Last active
November 18, 2018 22:20
-
-
Save fluxdigital/1bef201abca1e950839807edf8d24294 to your computer and use it in GitHub Desktop.
Telligent Community Blog Post List
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
@using System.Web.Mvc | |
@using System.Web.Mvc.Html | |
@model TcDemo.Models.TcBlogPost | |
<section> | |
@foreach (TcDemo.Models.TcBlogPost post in Model){ | |
<div> | |
<h1> | |
<a href="@post.Url">@Html.Raw(post.Title)</a> | |
</h1> | |
<p>@Html.Raw(post.Body)</p> | |
<div> | |
<img src="@post.AvatarUrl"> | |
<a href="@post.ProfileUrl" target="_blank">@post.DisplayName</a> | |
</div> | |
<div> | |
<span>views: @post.Views</span> | |
<span>comments: @post.CommentCount</span> | |
</div> | |
</div> | |
} | |
<section> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment