prvi
This commit is contained in:
32
ZpcBulletinBoard/Pages/Shared/_Layout.cshtml
Normal file
32
ZpcBulletinBoard/Pages/Shared/_Layout.cshtml
Normal file
@@ -0,0 +1,32 @@
|
||||
@{
|
||||
Layout = "Shared/_Application";
|
||||
}
|
||||
|
||||
@section Styles {
|
||||
@await RenderSectionAsync("Styles", required: false)
|
||||
}
|
||||
|
||||
<div class="layout-wrapper layout-2">
|
||||
<div class="layout-inner">
|
||||
|
||||
@await Html.PartialAsync("Layouts/Partials/_LayoutSidenav")
|
||||
|
||||
<div class="layout-container">
|
||||
@await Html.PartialAsync("Layouts/Partials/_LayoutNavbar")
|
||||
|
||||
<div class="layout-content">
|
||||
|
||||
<div class="container-fluid flex-grow-1 container-p-y">
|
||||
@RenderBody()
|
||||
</div>
|
||||
|
||||
@await Html.PartialAsync("Layouts/Partials/_LayoutFooter")
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="layout-overlay layout-sidenav-toggle"></div>
|
||||
</div>
|
||||
|
||||
@section Scripts {
|
||||
@await RenderSectionAsync("Scripts", required: false)
|
||||
}
|
||||
Reference in New Issue
Block a user