Files
paige-hugo/layouts/_default/baseof.html
2024-07-12 16:23:53 -07:00

38 lines
1.3 KiB
HTML

{{ $page := . }}
<!doctype html>
{{ partial "paige/tag-html.html" $page }}
{{ partial "paige/tag-head.html" $page }}
{{ partial "paige/tag-body.html" $page }}
{{ if templates.Exists "partials/paige/body-first.html" }}
{{ partial "paige/body-first.html" $page }}
{{ end }}
<div class="container flex-fill" id="paige-root">
<div class="row">
<div class="col">
<main class="mt-3" id="paige-main">
{{ if templates.Exists "partials/paige/main-first.html" }}
{{ partial "paige/main-first.html" $page }}
{{ end }}
{{ partial "paige/site-header.html" $page }}
{{ block "main" $page }}{{ end }}
{{ partial "paige/site-footer.html" $page }}
{{ if templates.Exists "partials/paige/main-last.html" }}
{{ partial "paige/main-last.html" $page }}
{{ end }}
</main>
</div>
</div>
</div>
{{ partial "paige/scripts.html" $page }}
{{ if templates.Exists "partials/paige/body-last.html" }}
{{ partial "paige/body-last.html" $page }}
{{ end }}
</body>
</html>