BootstrapAdmin/Bootstrap.Admin/Views/Shared/_Admin.cshtml

37 lines
1.4 KiB
Plaintext
Raw Normal View History

2016-10-20 17:55:29 +08:00
@{
ViewBag.Title = "后台管理";
Layout = "~/Views/Shared/_Layout.cshtml";
}
@section css {
<link href="~/Content/css/font-awesome.css" rel="stylesheet" />
<link href="~/Content/css/bootstrap-table.css" rel="stylesheet" />
<link href="~/Content/css/sweetalert.css" rel="stylesheet" />
<link href="~/Content/css/site.css" rel="stylesheet" />
<link href="~/Content/css/admin.css" rel="stylesheet" />
<link href="~/Content/css/site-responsive.css" rel="stylesheet" />
2016-10-20 17:55:29 +08:00
@RenderSection("css", false)
}
@section javascript {
<script src="~/Content/js/jquery.dcjqaccordion.2.7.js"></script>
<script src="~/Content/js/jquery.scrollTo.js"></script>
<script src="~/Content/js/jquery.nicescroll.min.js"></script>
<script src="~/Content/js/common-scripts.js"></script>
<script src="~/Content/js/log.js"></script>
2016-10-20 17:55:29 +08:00
<script src="~/Content/js/framework.js"></script>
@RenderSection("Javascript", false)
}
<section id="container">
@RenderSection("header", false)
@RenderSection("navigator", false)
<section id="main-content">
<section class="wrapper">
<div class="row">
<div class="col-lg-12">
@RenderBody()
</div>
2016-10-20 17:55:29 +08:00
</div>
</section>
2016-10-20 17:55:29 +08:00
</section>
@Html.Partial("Footer")
2016-10-20 17:55:29 +08:00
</section>
@RenderSection("modal", false)