-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_AdminLayout.cshtml
More file actions
42 lines (42 loc) · 1.87 KB
/
Copy path_AdminLayout.cshtml
File metadata and controls
42 lines (42 loc) · 1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
@{
Layout = null;
}
@using MyWebApp.Services
@inject ThemeService ThemeService
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Admin - Screen Area Recorder Pro</title>
<link rel="stylesheet" href="~/css/admin.css" asp-append-version="true" />
<link rel="stylesheet" href="@(ThemeService.GetCssPath())" asp-append-version="true" />
<link rel="stylesheet" href="~/lib/quill/dist/quill.snow.css" />
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="~/lib/quill/dist/quill.js" asp-append-version="true"></script>
</head>
<body>
<header class="site-header admin-header">
<div class="container-fluid nav-container">
<a class="logo" asp-controller="Admin" asp-action="Index">Admin Panel</a>
<nav class="site-nav">
<a asp-controller="Admin" asp-action="Index">Dashboard</a>
<a asp-controller="Admin" asp-action="Downloads">Downloads</a>
<a asp-controller="Admin" asp-action="Stats">Stats</a>
<a asp-controller="Admin" asp-action="DbSettings">DB Settings</a>
<a asp-controller="Admin" asp-action="Logs">Logs</a>
<a asp-controller="Files" asp-action="Index">Files</a>
<a asp-controller="Media" asp-action="Index">Media</a>
<a asp-controller="AdminBlockTemplate" asp-action="Index">Blocks</a>
<a asp-controller="AdminRole" asp-action="Index">Roles</a>
<a asp-controller="AdminContent" asp-action="Index">Pages</a>
<a asp-controller="Account" asp-action="Logout">Logout</a>
</nav>
</div>
</header>
<main class="admin-main container">
@RenderBody()
</main>
@await RenderSectionAsync("Scripts", required: false)
</body>
</html>