2018-09-15 15:50:17 +08:00
|
|
|
@model ModelBase
|
|
|
|
@{
|
2018-09-18 01:53:20 +08:00
|
|
|
Layout = "_Layout";
|
2018-09-15 15:50:17 +08:00
|
|
|
}
|
|
|
|
@section css {
|
|
|
|
<environment include="Development">
|
2018-10-06 13:45:35 +08:00
|
|
|
<link href="~/css/bootstrap.css" rel="stylesheet" />
|
|
|
|
<link href="~/css/font-awesome.css" rel="stylesheet" />
|
2018-09-15 15:50:17 +08:00
|
|
|
</environment>
|
|
|
|
<environment exclude="Development">
|
2018-10-06 13:45:35 +08:00
|
|
|
<link href="~/css/bootstrap.min.css" rel="stylesheet" />
|
|
|
|
<link href="~/css/font-awesome.min.css" rel="stylesheet" />
|
2018-09-15 15:50:17 +08:00
|
|
|
</environment>
|
|
|
|
@RenderSection("css", false)
|
2018-09-18 01:53:20 +08:00
|
|
|
<link href="~/css/site.css" rel="stylesheet" asp-append-version="true" />
|
|
|
|
<link href="~/css/site-responsive.css" rel="stylesheet" asp-append-version="true" />
|
2018-09-29 12:08:52 +08:00
|
|
|
<link href="~/css/theme.css" rel="stylesheet" asp-append-version="true" />
|
|
|
|
<link href="~/css/theme-responsive.css" rel="stylesheet" asp-append-version="true" />
|
2018-09-15 15:50:17 +08:00
|
|
|
@if (!string.IsNullOrEmpty(Model.Theme))
|
|
|
|
{
|
2018-09-18 01:53:20 +08:00
|
|
|
<link href="~/css/@Model.Theme" rel="stylesheet" asp-append-version="true" />
|
2018-09-15 15:50:17 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
@section javascript {
|
|
|
|
<environment include="Development">
|
2018-10-06 13:45:35 +08:00
|
|
|
<script src="~/js/bootstrap.bundle.js"></script>
|
2018-09-15 15:50:17 +08:00
|
|
|
</environment>
|
|
|
|
<environment exclude="Development">
|
2018-10-06 13:45:35 +08:00
|
|
|
<script src="~/js/bootstrap.bundle.min.js"></script>
|
2018-09-15 15:50:17 +08:00
|
|
|
</environment>
|
2018-10-06 13:45:35 +08:00
|
|
|
<script src="~/js/nprogress.js"></script>
|
2018-09-18 01:53:20 +08:00
|
|
|
<script src="~/js/longbow.common.js" asp-append-version="true"></script>
|
|
|
|
@RenderSection("javascript", false)
|
2018-09-15 15:50:17 +08:00
|
|
|
}
|
|
|
|
@await Html.PartialAsync("Header")
|
|
|
|
@RenderBody()
|
|
|
|
@await Html.PartialAsync("Footer")
|
|
|
|
@RenderSection("modal", false)
|