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

@Model.Source.Title

@Model.Source.Subtitle

@if (Model.Source.PublishedAt != default) { Publisert: @Model.Source.PublishedAt.ToString("dd-MM-yyyy hh:mm:ss") } @if (Model.Source.UpdatedAt != default) {
Oppdatert: @Model.Source.UpdatedAt.ToString("dd-MM-yyyy hh:mm:ss") }
@foreach (var author in Model.Source.Authors) { @author.Name: @author.Title
}
@Html.Raw(Model.Source.Content)