Proper theme basis

This commit is contained in:
Nox Sluijtman 2022-08-18 14:17:23 +02:00
parent f474eb76e0
commit 9b0b8dfcf1
27 changed files with 318 additions and 102 deletions

View file

@ -0,0 +1,10 @@
{{ if or .NextInSection .PrevInSection }}
<div class="pagination__buttons">
{{ if .NextInSection }}
<a class="button prev" href="{{ .NextInSection.Permalink }}">{{ .NextInSection.Title }}</a>
{{ end }}
{{ if .PrevInSection }}
<a class="button next" href="{{ .PrevInSection.Permalink }}">{{ .PrevInSection.Title }}</a>
{{ end }}
</div>
{{ end }}