axiom/examples/fullstack/templates/baseof.html

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 }}