PlanTempusApp/PlanTempus.DeprecatedApplication/Pages/Shared/_Layout.cshtml
Janus C. H. Knudsen 7fc1ae0650 WIP
2026-01-10 20:39:17 +01:00

27 lines
No EOL
714 B
Text

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@ViewData["Title"] - PlanTempus</title>
<link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
<script type="module" src="/js/app.js"></script>
</head>
<body>
<swp-container>
<aside>
<aside-top><img src="~/images/pt-logo2.png" /></aside-top>
@await Component.InvokeAsync("Navigation")
</aside>
<main>@RenderBody()</main>
<top>top</top>
<footer>footer</footer>
</swp-container>
@await RenderSectionAsync("Scripts", required: false)
</body>
</html>