more CSS styling

This commit is contained in:
Simon Martens
2025-01-13 23:16:08 +01:00
parent 5c54b51050
commit d2c21017f0
9 changed files with 84 additions and 39 deletions

View File

@@ -29,16 +29,30 @@
</script>
</head>
<body class="w-full h-full p-3" hx-ext="response-targets" hx-boost="true">
{{ block "_menu" . }}
<!-- Default app menu... -->
{{ end }}
<body class="w-full" hx-ext="response-targets" hx-boost="true">
<div class="container flex flex-col min-h-screen max-w-screen-2xl mx-auto">
<header>
{{ block "_header" . }}
<!-- Default app header... -->
{{ end }}
</header>
<div>
{{ block "_menu" . }}
<!-- Default app menu... -->
{{ end }}
</div>
<main>
{{ block "body" . }}
<!-- Default app body... -->
{{ end }}
</main>
<main class="">
{{ block "body" . }}
<!-- Default app body... -->
{{ end }}
</main>
<footer>
{{ block "_footer" . }}
{{ end }}
</footer>
</div>
</body>
</html>