Created
April 30, 2015 13:40
-
-
Save mikeedwards83/09aebfee4551c339d195 to your computer and use it in GitHub Desktop.
List.cshtml for Glass.Mapper.Sc Workbook
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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