Add project files.

This commit is contained in:
2025-05-01 15:18:30 +03:00
parent e058ab8015
commit 774d695414
3094 changed files with 1336814 additions and 0 deletions

View 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>