FInalized Menu. Added first static Page...

This commit is contained in:
schnulller
2022-05-16 00:46:08 +02:00
parent c0ff6cea2d
commit d3d3d39bd0
18 changed files with 421 additions and 103 deletions

View File

@@ -18,17 +18,17 @@
</head>
<body class="w-100 h-100">
<body class="w-full h-full">
@await Html.PartialAsync("/Views/Shared/_Menu.cshtml")
<div class="w-full desktop:max-w-screen-desktop mx-auto">
<main role="main" class="pb-3">
@RenderBody()
</main>
</div>
<main role="main" class="pb-3 w-full desktop:max-w-screen-desktop mx-auto">
@RenderBody()
</main>
<script src="~/js/site.js" asp-append-version="true"></script>
@await RenderSectionAsync("Scripts", required: false)
@await Html.PartialAsync("/Views/Shared/_Footer.cshtml")
</body>
</html>