Files
musenalm/views/layouts/blankfooter/root.gohtml
2025-05-29 14:15:02 +02:00

33 lines
699 B
Plaintext

<!doctype html>
<html class="w-full h-full" {{ if .lang }}lang="{{ .lang }}"{{ end }}>
<head>
{{ block "head" . }}
<!-- Default Head elements -->
{{ end }}
{{ template "_head" . }}
</head>
<body class="w-full min-h-full" hx-ext="response-targets" hx-boost="true">
<div class="flex flex-col min-h-screen w-full">
<header class="container-normal bg-slate-100 " id="header">
{{ template "_menu" . }}
</header>
<main class="">
{{ block "body" . }}
<!-- Default app body... -->
{{ end }}
</main>
{{ template "_footer" . }}
{{ block "scripts" . }}
<!-- Default scripts... -->
{{ end }}
{{ template "_scripts" . }}
</div>
</body>
</html>