9 lines
No EOL
156 B
Text
9 lines
No EOL
156 B
Text
@model BlogPostViewModel;
|
|
|
|
@{
|
|
ViewData["Title"] = Model.Title;
|
|
}
|
|
|
|
@Html.Raw(Model.Content)
|
|
|
|
<small>Posted on @Model.Timestamp.ToString()</small> |