This commit is contained in:
Janus C. H. Knudsen 2026-01-10 20:39:17 +01:00
parent 54b057886c
commit 7fc1ae0650
204 changed files with 4345 additions and 134 deletions

View file

@ -0,0 +1,27 @@
<!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>