summaryrefslogtreecommitdiff
path: root/dwalker.xyz/Pages/Shared/_Layout.cshtml
blob: 66b9533ad77a7d603c6cb553fa506b243dae72cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!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>
    <footer class="site-footer">
        <p><a href="https://dwalker.xyz">dwalker.xyz</a> © 2025 Anno Domini</p>
    </footer>

    @await RenderSectionAsync("Scripts", required: false)
</body>
</html>