@model BlogViewModel;
@{
ViewData["Title"] = "Blog";
}
@section ButtonsLeft {
@if (Model.Page > 1) {
}
}
@section ButtonsRight {
@if (Model.Page < Model.MaxPages) {
}
}
@foreach (var post in Model.Posts) {
@Html.Raw(post.Content)
Posted on @post.Timestamp
Read more...
}