axiom/templates/baseof.html
2025-06-30 23:51:37 -06:00

19 lines
373 B
HTML

{{ define "baseof" }}
<!DOCTYPE html>
<html lang="en">
<head>
{{ template "head" . }}
</head>
<body>
<header class="container">
{{ template "header" . }}
</header>
<main class="container">
{{ block "content" . }}{{ end }}
</main>
<footer class="container">
{{ template "footer" . }}
</footer>
</body>
</html>
{{ end }}