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

23 lines
818 B
Plaintext
Raw Normal View History

2018-06-07 00:45:47 +08:00
@{
Layout = "~/Views/Shared/_Root.cshtml";
}
@section css {
<link href="~/css/bootstrap.css" rel="stylesheet">
<link href="~/css/bootstrap-theme.css" rel="stylesheet">
<link href="~/css/nprogress.css" rel="stylesheet" />
<link href="~/css/font-awesome.css" rel="stylesheet" />
<link href="~/css/site.css" rel="stylesheet" />
<link href="~/css/site-responsive.css" rel="stylesheet" />
2016-10-20 17:55:29 +08:00
@RenderSection("css", false)
2018-06-07 00:45:47 +08:00
}
@section javascript {
<script src="~/js/bootstrap.js"></script>
<script src="~/js/nprogress.js"></script>
<script src="~/js/Longbow.Common.js"></script>
2016-10-20 17:55:29 +08:00
@RenderSection("Javascript", false)
2018-06-07 00:45:47 +08:00
}
<a id="pathBase" href="~/" class="hidden"></a>
@Html.Partial("Header")
@RenderBody()
@Html.Partial("Footer")
@RenderSection("modal", false)