Skip to content

Instantly share code, notes, and snippets.

@fluxdigital
Last active November 18, 2018 22:20
Show Gist options
  • Save fluxdigital/1bef201abca1e950839807edf8d24294 to your computer and use it in GitHub Desktop.
Save fluxdigital/1bef201abca1e950839807edf8d24294 to your computer and use it in GitHub Desktop.
Telligent Community Blog Post List
@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