mirror of https://github.com/abpframework/abp
parent
8ea9c31bee
commit
20398b4853
@ -1,6 +1,6 @@
|
||||
@using Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Views.Shared.Components.Theme.MainNavbar.Brand
|
||||
@using Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Views.Shared.Components.Theme.MainNavbar.Menu
|
||||
@using Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Views.Shared.Components.Theme.MainNavbar.Toolbar
|
||||
@using Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Themes.Basic.Components.Brand
|
||||
@using Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Themes.Basic.Components.Menu
|
||||
@using Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Themes.Basic.Components.Toolbar
|
||||
<nav class="navbar navbar-expand-md navbar-dark bg-dark fixed-top" id="main-navbar">
|
||||
@(await Component.InvokeAsync<MainNavbarBrandViewComponent>())
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse"
|
@ -1,4 +1,4 @@
|
||||
@using Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Views.Shared.Components.Theme.MainNavbar.Toolbar.Items.LanguageSwitch
|
||||
@using Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Themes.Basic.Components.Toolbar.LanguageSwitch
|
||||
@model LanguageSwitchViewComponentModel
|
||||
<div class="dropdown d-inline">
|
||||
<a class="btn btn-link dropdown-toggle" href="#" role="button" id="dropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
@ -1,6 +1,5 @@
|
||||
@using Volo.Abp.AspNetCore.Mvc.AntiForgery
|
||||
@using Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Views.Shared.Components.Theme.MainNavbar
|
||||
@using Volo.Abp.UI.Navigation
|
||||
@using Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Themes.Basic.Components.MainNavbar
|
||||
@inject IAbpAntiForgeryManager AbpAntiForgeryManager
|
||||
@{
|
||||
Layout = null;
|
@ -0,0 +1,3 @@
|
||||
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
|
||||
@addTagHelper *, Volo.Abp.AspNetCore.Mvc.UI
|
||||
@addTagHelper *, Volo.Abp.AspNetCore.Mvc.UI.Bootstrap
|
@ -1 +0,0 @@
|
||||
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
|
@ -1,3 +1,6 @@
|
||||
@{
|
||||
Layout = "~/Views/Shared/_AppLayout.cshtml";
|
||||
}
|
||||
@using Volo.Abp.AspNetCore.Mvc.UI.Theming
|
||||
@inject IThemeManager ThemeManager
|
||||
@{
|
||||
//TODO: Move this to a lower layer... to Shared?
|
||||
Layout = ThemeManager.CurrentTheme.DefaultLayout;
|
||||
}
|
Loading…
Reference in new issue