@{ Layout = "~/Views/Shared/Layout/_Layout.None.cshtml"; var imagePath = string.IsNullOrEmpty(AbpSession.AvatarImagePath) ? "/Content/Image/user.png" : AbpSession.AvatarImagePath; string pageTitle = (ViewBag.Title == "主页" ? null : ViewBag.Title) ?? "在线分布式演练"; }
@(pageTitle)
@(AbpSession.RealName)
@RenderBody()
@section styles{ @RenderSection("styles", false) } @section css{ @RenderSection("css", false) } @section js{ @RenderSection("js", false) } @section scripts{ @RenderSection("scripts", false) } @section modal{ @RenderSection("modal", false) }