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