|
|
|
@ -7,6 +7,7 @@ |
|
|
|
@{ |
|
|
|
Layout = null; |
|
|
|
AbpAntiForgeryManager.SetCookie(); |
|
|
|
var containerClass = ViewBag.FluidLayout == true ? "container-fluid" : "container"; //TODO: Better and type-safe options |
|
|
|
} |
|
|
|
|
|
|
|
<!DOCTYPE html> |
|
|
|
@ -15,6 +16,7 @@ |
|
|
|
<head> |
|
|
|
<meta charset="utf-8"> |
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> |
|
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge"> |
|
|
|
|
|
|
|
<title>@(ViewBag.Title == null ? BrandingProvider.AppName : ViewBag.Title)</title> |
|
|
|
|
|
|
|
@ -24,7 +26,7 @@ |
|
|
|
</head> |
|
|
|
<body class="abp-empty-layout"> |
|
|
|
|
|
|
|
<div class="container"> |
|
|
|
<div class="@containerClass"> |
|
|
|
@(await Component.InvokeAsync<PageAlertsViewComponent>()) |
|
|
|
@RenderBody() |
|
|
|
</div> |
|
|
|
|