@page "/blog/{post}" @using zotanpw.Backend @model BlogPostModel @{ if (Model.Post == null) return; ViewData["title"] = "blog"; ViewData["subtitle"] = Model.Post.Shorthand; ViewData["desc"] = Model.Post.Title; #if (DEBUG) Model.Post.UpdateContentAndMetadata(); #endif } @Model.Post.PublishedOn.ToString("yyyy-MM-dd") - @Utils.a_an(Model.Post.ReadTimeMinutes) @Model.Post.ReadTimeMinutes minute read (150 wpm)

@Model.Post.Title

@Html.Raw(Model.Post.Content)