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

39 lines
1.4 KiB
Plaintext

@{
Layout = "~/Views/Shared/_Layout.cshtml";
}
@section css {
<link href="~/css/sweetalert.css" rel="stylesheet" />
<environment include="Development">
<link href="~/css/toastr.css" rel="stylesheet" />
</environment>
<environment exclude="Development">
<link href="~/css/toastr.min.css" rel="stylesheet" />
</environment>
@RenderSection("css", false)
<link href="~/css/admin.css" rel="stylesheet" />
<link href="~/css/admin-responsive.css" rel="stylesheet" />
}
@section javascript {
<environment include="Development">
<script src="~/js/sweetalert.js"></script>
<script src="~/js/jquery.scrollTo.js"></script>
</environment>
<environment exclude="Development">
<script src="~/js/sweetalert.min.js"></script>
<script src="~/js/jquery.scrollTo.min.js"></script>
</environment>
<script src="~/js/jquery.dcjqaccordion.2.7.js"></script>
<script src="~/js/jquery.nicescroll.min.js"></script>
<script src="~/js/common-scripts.js"></script>
<script src="~/js/log.js"></script>
<script src="~/js/toastr.min.js"></script>
<script src="~/js/framework.js"></script>
@RenderSection("Javascript", false)
}
@await Html.PartialAsync("navigator")
<section id="main-content" class="main-content">
@RenderBody()
</section>
@section modal {
@RenderSection("modal", false)
}