15 lines
360 B
Plaintext
15 lines
360 B
Plaintext
@{
|
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
|
}
|
|
@section css {
|
|
<link href="~/css/bootstrap-table.css" rel="stylesheet" />
|
|
<link href="~/css/sweetalert.css" rel="stylesheet" />
|
|
@RenderSection("css", false)
|
|
}
|
|
@section javascript {
|
|
@RenderSection("Javascript", false)
|
|
}
|
|
<section id="main-content">
|
|
@RenderBody()
|
|
</section>
|