blob: 52b617ab2560b75fecfec88e20888451cc5a1fca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@ViewData["Title"]</title>
<link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
</head>
<body>
<main class="app-shell">
@RenderBody()
</main>
@await RenderSectionAsync("Scripts", required: false)
</body>
</html>
|