blob: ee5d205a5735955a1b9977389b4752fbc9638af8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
@model IEnumerable<Project_Unite.Models.BlogPost>
@{
ViewBag.Title = "Blog";
}
<h2>Developer Blog</h2>
<p>We ShiftOS devs have a lot going on. If you want to find out a bit more about what we do behind the scenes, this is the place for you. We'll post lots of things for you to read here.</p>
@if (Request.IsAuthenticated)
{
if (User.Identity.IsDeveloper())
{
<ul class="nav nav-pills">
<li><a href="@Url.Action("PostBlog")"><span class="glyphicon glyphicon-file"></span> Post</a></li>
</ul>
}
}
@foreach(var blog in Model.OrderByDescending(x=>x.PostedAt))
{
<div class="panel">
<div class="panel-body">
<h4>@blog.Name</h4>
<p>Posted by @Html.UserLink(blog.AuthorId) at @blog.PostedAt - @blog.Likes.Length likes, @blog.Dislikes.Length dislikes</p>
<p>@Html.Markdown(blog.Summary)</p>
@Html.ActionLink("Read more", "ViewBlog", "Blog", new { id = blog.Id }, new { @class = "btn btn-default" })
</div>
</div>
}
|