@page "{site?}"
@model IndexModel
@{
ViewData["Title"] = Model.PageTitle;
}
@if (Model.FrontPage != default) {
foreach (var article in Model.FrontPage.Articles) {
}
@section scripts {
}
} else if (Model.Article != default) {
@Html.Raw(Model.Article.Content)
@section scripts {
}}