@page "/blog/{year:int}/{month:int}/{day:int}/{slug}" @using Humanizer @model OliverBooth.Pages.Blog.Article @if (Model.Post is { } post) {

@post.Title

@Model.Author?.Name • @post.Published.Humanize()

@Html.Raw(Model.SanitizeContent(post.Body))

}