Files
constructdemo/ConstructorAppUI/Views/AdminLayout/Index.cshtml
2025-05-01 15:18:30 +03:00

40 lines
1.3 KiB
Plaintext

@{
Layout = null;
}
<!DOCTYPE html>
<html lang="en">
@await Component.InvokeAsync("_AdminLayoutHeaderPartialComponent")
<body class="hold-transition sidebar-mini">
<div class="wrapper">
@await Component.InvokeAsync("_AdminLayoutNavbarPartialComponent")
<aside class="main-sidebar sidebar-dark-primary elevation-4">
@await Component.InvokeAsync("_AdminLayoutSidebarPartialComponent")
</aside>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<div class="content-header">
<div class="container-fluid">
@RenderBody()
<div class="row mb-2">
</div><!-- /.row -->
</div><!-- /.container-fluid -->
</div>
<!-- /.content-header -->
<!-- Main content -->
</div>
<!-- /.content-wrapper -->
<!-- Main Footer -->
<footer class="main-footer">
@await Component.InvokeAsync("_AdminLayoutFooterPartialComponent")
</footer>
</div>
</body>
@await Component.InvokeAsync("_AdminLayoutScriptPartialComponent")
@RenderSection("Scripts", required: false)
</html>