Files
paige-hugo/layouts/_default/baseof.html
2022-12-11 01:00:28 -08:00

24 lines
783 B
HTML

<!doctype html>
<html lang="{{ .Site.LanguageCode }}">
{{ partial "paige_head.html" . }}
<body class="d-flex flex-column">
<div class="container flex-fill">
<div class="row">
<div class="col">
{{ partial "paige_header.html" . }}
<main>
<article>
{{ block "main" . }}{{ end }}
</article>
</main>
{{ partial "paige_footer.html" . }}
</div>
</div>
</div>
{{ partial "paige_script.html" . }}
{{ if templates.Exists "partials/paige_body_last.html" }}
{{ partial "paige_body_last.html" . }}
{{ end }}
</body>
</html>