@using IdentityServer4.Extensions @{ string name = null; if (!true.Equals(ViewData["signed-out"])) { name = Context.User?.GetDisplayName(); } } @if (string.IsNullOrEmpty(ViewBag.Title)) { <text>@Config.Title</text> } else { <text>@ViewBag.Title | @Config.Title</text> }
@RenderBody()
@await Html.PartialAsync("_Footer")