11 lines
No EOL
190 B
Text
11 lines
No EOL
190 B
Text
@model BlogPostViewModel
|
|
|
|
@{
|
|
ViewData["Title"] = Model.Title;
|
|
}
|
|
|
|
<article class="blog-post">
|
|
@Html.Raw(Model.ContentHtml)
|
|
</article>
|
|
|
|
<small>Posted on @Model.Timestamp</small> |