Skip to content

Instantly share code, notes, and snippets.

@mikeedwards83
Created April 30, 2015 13:40
Show Gist options
  • Select an option

  • Save mikeedwards83/09aebfee4551c339d195 to your computer and use it in GitHub Desktop.

Select an option

Save mikeedwards83/09aebfee4551c339d195 to your computer and use it in GitHub Desktop.
List.cshtml for Glass.Mapper.Sc Workbook
<div class="row">
<div class="col-md-12">
<h3>Comments</h3>
@if (Model.Comments == null || !Model.Comments.Any())
{
<p>
Be the first to make a comment.
</p>
}
else
{
foreach (var comment in Model.Comments)
{
<div>
<h4>@comment.FullName <small> - @comment.Date.ToString("dd MMM yyyy")</small></h4>
<div>
@comment.Message
</div>
</div>
}
}
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment