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

@post.Title

@post.Published.ToString("MMMM dd, yyyy") • @Model.Author?.Name

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