Vugo theme

This commit is contained in:
Nox Sluijtman 2024-02-10 20:50:19 +01:00
commit 64b0159616
33 changed files with 1224 additions and 0 deletions

View file

@ -0,0 +1,8 @@
<div class="pagination__buttons">
{{ if .Paginator.HasPrev }}
<a class="button prev" href="{{ .Paginator.Prev.URL }}"> {{ $.Site.Params.newerPosts | default "Newer posts" }} </a>
{{ end }}
{{ if .Paginator.HasNext }}
<a class="button next" href="{{ .Paginator.Next.URL }}"> {{ $.Site.Params.olderPosts | default "Older posts" }} </a>
{{ end }}
</div>