Prvi commit
This commit is contained in:
28
EveryThing/Pages/Layouts/_Layout.cshtml
Normal file
28
EveryThing/Pages/Layouts/_Layout.cshtml
Normal file
@@ -0,0 +1,28 @@
|
||||
@{
|
||||
Layout = "Layouts/_Application";
|
||||
}
|
||||
|
||||
@section Styles { @RenderSection("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 { @RenderSection("Scripts", required: false) }
|
||||
Reference in New Issue
Block a user