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

15 lines
360 B
Plaintext
Raw Normal View History

2016-10-20 17:55:29 +08:00
@{
Layout = "~/Views/Shared/_Layout.cshtml";
}
@section css {
2018-06-07 00:45:47 +08:00
<link href="~/css/bootstrap-table.css" rel="stylesheet" />
<link href="~/css/sweetalert.css" rel="stylesheet" />
2016-10-20 17:55:29 +08:00
@RenderSection("css", false)
}
@section javascript {
@RenderSection("Javascript", false)
}
<section id="main-content">
@RenderBody()
2016-10-20 17:55:29 +08:00
</section>