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

31 lines
1.2 KiB
Plaintext
Raw Normal View History

2016-10-20 17:55:29 +08:00
@{
Layout = "~/Views/Shared/_Layout.cshtml";
}
@section css {
2016-11-27 16:50:07 +08:00
<link href="~/Content/css/tipso.css" rel="stylesheet" />
2016-10-20 17:55:29 +08:00
<link href="~/Content/css/font-awesome.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" />
<link href="~/Content/css/admin-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>
2016-11-27 16:50:07 +08:00
<script src="~/Content/js/tipso.js"></script>
2016-10-20 17:55:29 +08:00
<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>
@RenderSection("header", false)
@RenderSection("navigator", false)
<section id="main-content" class="main-content">
@RenderBody()
2016-10-20 17:55:29 +08:00
</section>
@Html.Partial("Footer")
2016-10-20 17:55:29 +08:00
</section>
@RenderSection("modal", false)