2018-08-10 16:05:24 +08:00
|
|
|
@model ModelBase
|
|
|
|
@{
|
2018-06-07 00:45:47 +08:00
|
|
|
Layout = "~/Views/Shared/_Root.cshtml";
|
|
|
|
}
|
|
|
|
@section css {
|
2018-08-01 21:54:54 +08:00
|
|
|
<environment include="Development">
|
|
|
|
<link href="~/css/bootstrap.css" rel="stylesheet">
|
|
|
|
<link href="~/css/font-awesome.css" rel="stylesheet" />
|
|
|
|
</environment>
|
|
|
|
<environment exclude="Development">
|
|
|
|
<link href="~/css/bootstrap.min.css" rel="stylesheet">
|
|
|
|
<link href="~/css/font-awesome.min.css" rel="stylesheet" />
|
|
|
|
</environment>
|
2018-06-07 12:25:03 +08:00
|
|
|
<link href="~/css/nprogress.css" rel="stylesheet" />
|
|
|
|
@RenderSection("css", false)
|
2018-08-04 16:45:54 +08:00
|
|
|
<link href="~/css/theme.css" rel="stylesheet" />
|
2018-08-04 19:01:43 +08:00
|
|
|
<link href="~/css/theme-responsive.css" rel="stylesheet" />
|
2018-06-07 00:45:47 +08:00
|
|
|
<link href="~/css/site.css" rel="stylesheet" />
|
|
|
|
<link href="~/css/site-responsive.css" rel="stylesheet" />
|
2018-08-10 16:05:24 +08:00
|
|
|
@if (!string.IsNullOrEmpty(Model.Theme))
|
|
|
|
{
|
|
|
|
<link href="~/css/@Model.Theme" rel="stylesheet" />
|
|
|
|
}
|
2018-06-07 00:45:47 +08:00
|
|
|
}
|
|
|
|
@section javascript {
|
2018-08-01 21:54:54 +08:00
|
|
|
<environment include="Development">
|
|
|
|
<script src="~/js/bootstrap.bundle.js"></script>
|
|
|
|
</environment>
|
|
|
|
<environment exclude="Development">
|
|
|
|
<script src="~/js/bootstrap.bundle.min.js"></script>
|
|
|
|
</environment>
|
2018-06-07 00:45:47 +08:00
|
|
|
<script src="~/js/nprogress.js"></script>
|
2018-08-30 13:49:42 +08:00
|
|
|
<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
|
|
|
}
|
2018-06-15 16:14:49 +08:00
|
|
|
@await Html.PartialAsync("Header")
|
2018-06-07 00:45:47 +08:00
|
|
|
@RenderBody()
|
2018-06-15 16:14:49 +08:00
|
|
|
@await Html.PartialAsync("Footer")
|
2018-08-30 13:49:42 +08:00
|
|
|
@RenderSection("modal", false)
|