27 lines
No EOL
714 B
Text
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> |