首页 > 代码库 > asp.net mvc adminlte第一波
asp.net mvc adminlte第一波
首页模板选用官方DEMO中的Blank模板,这个模板相对来说是最干净的。
首页模板的分割:
官方文档是分的4个部分
- Wrapper
.wrapper
. A div that wraps the whole site. - Main Header
.main-header
. Contains the logo and navbar. - Sidebar
.sidebar-wrapper
. Contains the user panel and sidebar menu. - Content
.content-wrapper
. Contains the page header and content.
我的 _Layout.cshtml 细分如图所示
@*封装整个网站*@
<div class="wrapper">
@*上面导航栏*@
@Html.Partial("_MainHeader")
@*左边菜单栏*@
@Html.Partial("_LeftSideMenus")
@*中间内容页*@
@RenderBody()
@*页脚*@
@Html.Partial("_MainFooter")
@*右边弹出菜单栏*@
@Html.Partial("_ControlSidebar")
<!-- Add the sidebar‘s background. This div must be placed
immediately after the control sidebar -->
<div class="control-sidebar-bg"></div>
</div>
演示地址: http://mes.lianshui.org.cn/
不断更新中
asp.net mvc adminlte第一波
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。