PlanTempusApp/Application/Pages/Shared/_Layout.cshtml

27 lines
714 B
Text
Raw Normal View History

2025-01-03 16:21:03 +00:00
<!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>
2025-01-03 16:21:03 +00:00
@await Component.InvokeAsync("Navigation")
</aside>
<main>@RenderBody()</main>
<top>top</top>
<footer>footer</footer>
</swp-container>
2025-01-03 16:21:03 +00:00
@await RenderSectionAsync("Scripts", required: false)
</body>
</html>