@using DysonNetwork.Zone.Publication
@using DysonNetwork.Shared.Models
@using Microsoft.IdentityModel.Tokens
@{
Layout = "_Layout";
var site = Context.Items[PublicationSiteMiddleware.SiteContextKey] as SnPublicationSite;
var siteDisplayName = site?.Name ?? "Solar Network";
}
@if (site?.Config.NavItems is null || site.Config.NavItems.IsNullOrEmpty())
{
@*Use preset navs*@
}
else
{
}
@RenderBody()
@section Scripts
{
@await RenderSectionAsync("Scripts", required: false)
}
@section Head
{
@await RenderSectionAsync("Head", required: false)
@if (site?.Config.StyleOverride is not null)
{
}
}