@model BlogViewModel; @{ ViewData["Title"] = "Blog"; } @section ButtonsLeft { @if (Model.Page > 1) { } } @section ButtonsRight { @if (Model.Page < Model.MaxPages) { } } @foreach (var post in Model.Posts) {

@post.Title

@Html.Raw(post.Content) Posted on @post.Timestamp.ToString()

Read more...

}