completely re-working everything!

This commit is contained in:
Timothy Rogers 2021-06-25 19:11:18 -04:00
parent 2a6fdc1a9c
commit 2266e3ddc5
20 changed files with 24 additions and 516 deletions

View file

@ -0,0 +1,17 @@
{{ partial "header.html" . }}
<div class="header">
<h1>{{ .Title }}</h1>
<h2>{{ .Site.Params.subtitle }}</h2>
</div>
<div class="content">
{{ range ( .Paginate (where .Site.RegularPages "Type" "post")).Pages }}
{{ .Render "summary"}}
{{ end }}
{{ partial "pagination.html" . }}
</div>
{{ partial "footer.html" . }}