@using SeniorAssistant.Extensions @using Microsoft.Extensions.Options @inject IOptions Kendo @inject IOptions Theme @inject IHttpContextAccessor HttpContextAccessor @{ var kendo = Kendo.Value; var theme = Theme.Value; var logged = HttpContextAccessor.HttpContext.Session.GetString("username") != null; } SeniorAssistant @ViewBag.Title
@{ await Html.RenderPartialAsync("SidebarMenu"); }

@ViewBag.PageHeader

@{ await Html.RenderPartialAsync("Breadcrumb"); }
@RenderBody()
@{ await Html.RenderPartialAsync("Footer"); }
@**@