Add project files.
This commit is contained in:
39
ConstructorAppUI/Views/AdminLayout/Index.cshtml
Normal file
39
ConstructorAppUI/Views/AdminLayout/Index.cshtml
Normal file
@@ -0,0 +1,39 @@
|
||||
@{
|
||||
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>
|
||||
|
||||
Reference in New Issue
Block a user