mirror of
https://github.com/Theodor-Springmann-Stiftung/musenalm.git
synced 2025-10-28 16:55:32 +00:00
33 lines
709 B
Plaintext
33 lines
709 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 id="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>
|