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

36 lines
733 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 text-lg" hx-ext="response-targets" hx-boost="true">
<div class="flex flex-col min-h-screen w-full">
<header class="container-normal pb-0" id="header">
{{ block "_menu" . }}
<!-- Default app menu... -->
{{ end }}
</header>
<main class="">
{{ block "body" . }}
<!-- Default app body... -->
{{ end }}
</main>
{{ template "_footer" . }}
{{ block "scripts" . }}
<!-- Default scripts... -->
{{ end }}
{{ template "_scripts" . }}
</div>
</body>
</html>