Files
hamann-ausgabe-core/HaWeb/Views/Shared/_HKWLayout.cshtml

25 lines
734 B
Plaintext

<!DOCTYPE html>
<html lang="de" id="top">
<head>
@await Html.PartialAsync("/Views/Shared/_Head.cshtml")
</head>
<body class="w-full ">
<div class="relative min-h-screen">
<div class="pb-24">
@await Html.PartialAsync("/Views/Shared/_HKWMenu.cshtml")
<main role="main" class="pb-3 w-full desktop:max-w-screen-desktop mx-auto h-full">
@RenderBody()
</main>
</div>
<div class="absolute bottom-0 w-full">
@await Html.PartialAsync("/Views/Shared/_Footer.cshtml")
</div>
</div>
@await Html.PartialAsync("/Views/Shared/_ScrollButton.cshtml")
</div>
@await RenderSectionAsync("JavaScript", false)
</body>
</html>