Format templates

This commit is contained in:
Will Faught
2023-02-05 19:51:09 -08:00
parent 038b48bfc2
commit 469d6ee893
12 changed files with 44 additions and 9 deletions

View File

@@ -12,10 +12,12 @@
{{ if templates.Exists "partials/paige/body-first.html" }}
{{ partial "paige/body-first.html" $page }}
{{ end }}
<div class="container flex-fill">
<div class="row">
<div class="col">
{{ partial "paige/header.html" $page }}
<main>
{{ if templates.Exists "partials/paige/main-first.html" }}
{{ partial "paige/main-first.html" $page }}
@@ -25,11 +27,14 @@
{{ partial "paige/main-last.html" $page }}
{{ end }}
</main>
{{ partial "paige/footer.html" $page }}
</div>
</div>
</div>
{{ partial "paige/scripts.html" $page }}
{{ if templates.Exists "partials/paige/body-last.html" }}
{{ partial "paige/body-last.html" $page }}
{{ end }}