28 lines
No EOL
746 B
Text
28 lines
No EOL
746 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>
|
|
|
|
<div class="container">
|
|
<main role="main" class="pb-3">
|
|
@RenderBody()
|
|
</main>
|
|
</div>
|
|
|
|
<footer class="border-top footer text-muted">
|
|
<div class="container">
|
|
© 2024 - PlanTempus - <a asp-area="" asp-page="/Privacy">Privacy</a>
|
|
</div>
|
|
</footer>
|
|
|
|
|
|
@await RenderSectionAsync("Scripts", required: false)
|
|
</body>
|
|
</html> |