|
|
@ -1,4 +1,6 @@ |
|
|
@using Volo.Abp.AspNetCore.Mvc.UI.Components.LayoutHook |
|
|
@using Microsoft.Extensions.Options |
|
|
|
|
|
@using Volo.Abp.AspNetCore.Mvc.UI.Bundling.TagHelpers |
|
|
|
|
|
@using Volo.Abp.AspNetCore.Mvc.UI.Components.LayoutHook |
|
|
@using Volo.Abp.AspNetCore.Mvc.UI.Layout |
|
|
@using Volo.Abp.AspNetCore.Mvc.UI.Layout |
|
|
@using Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Bundling |
|
|
@using Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Bundling |
|
|
@using Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Themes.Basic.Components.PageAlerts |
|
|
@using Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Themes.Basic.Components.PageAlerts |
|
|
@ -10,6 +12,8 @@ |
|
|
@using Volo.Abp.Ui.LayoutHooks |
|
|
@using Volo.Abp.Ui.LayoutHooks |
|
|
@inject IBrandingProvider BrandingProvider |
|
|
@inject IBrandingProvider BrandingProvider |
|
|
@inject IPageLayout PageLayout |
|
|
@inject IPageLayout PageLayout |
|
|
|
|
|
@inject IOptions<AbpThemingOptions> ThemingOptions |
|
|
|
|
|
|
|
|
@{ |
|
|
@{ |
|
|
Layout = null; |
|
|
Layout = null; |
|
|
var containerClass = ViewBag.FluidLayout == true ? "container-fluid" : "container"; //TODO: Better and type-safe options |
|
|
var containerClass = ViewBag.FluidLayout == true ? "container-fluid" : "container"; //TODO: Better and type-safe options |
|
|
@ -38,6 +42,10 @@ |
|
|
<meta charset="utf-8"> |
|
|
<meta charset="utf-8"> |
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> |
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> |
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge"> |
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge"> |
|
|
|
|
|
@if (!ThemingOptions.Value.BaseUrl.IsNullOrWhiteSpace()) |
|
|
|
|
|
{ |
|
|
|
|
|
<base href="@ThemingOptions.Value.BaseUrl" /> |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
<title>@pageTitle</title> |
|
|
<title>@pageTitle</title> |
|
|
@if (ViewBag.Description != null) |
|
|
@if (ViewBag.Description != null) |
|
|
|