noveria.org/layouts/_default/baseof.html
2025-02-27 20:37:24 +01:00

19 lines
498 B
HTML

<!DOCTYPE html>
<html lang="en" class="overflow-x-hidden">
{{ partial "head" (dict "title" .Title) }}
<body>
{{ partial "header" }}
<main>
{{- $result := or .Params.no_banner false -}}
{{- if eq $result false -}}
<div id="banner"></div>
{{- end -}}
<div class="flex justify-center w-full mt-5">
<div class="prose w-3/6">
{{ block "main" . }}{{ end }}
</div>
</div>
</main>
{{ partial "footer" }}
</body>
</html>