@page "/les/{site}" @model ReadModel @{ ViewData["Title"] = Model.Source.Title; }

@Model.Source.Title

@Model.Source.Subtitle

Publisert: @Model.Source.PublishedAt.ToString("F")
Oppdatert: @Model.Source.UpdatedAt.ToString("F")
@foreach (var author in Model.Source.Authors) { @author.Name: @author.Title
}

@Html.Raw(Model.Source.Content)