Begin slow migration to Hugo...

This commit is contained in:
Chris Hodapp
2020-01-31 17:46:38 -05:00
parent f12c4b3773
commit 921b0e88fc
180 changed files with 2084 additions and 285 deletions

View File

@@ -0,0 +1,15 @@
<!-- Include the head/header -->
{{ partial "header.html" . }}
<!-- Content goes here -->
<div id="content">
{{ range $index, $page := (.Paginate (where (where .Site.RegularPages "Type" "in" site.Params.mainSections) ".Params.hidden" "!=" "true" )).Pages }}
{{ if ne $index 0 }}
{{ end }}
{{ .Render "li" }}
{{ end }}
{{ partial "pagination.html" .Paginator }}
</div>
<!-- Include the site info and footer -->
{{ partial "footer.html" . }}