serene-golang-implementation/site/themes/anybodyhome/layouts/partials/paginator.html

13 lines
276 B
HTML

<section id="paginator">
{{ if .Paginator.HasPrev }}
<a id="previous" href="{{ .Paginator.Prev.URL }}">
Previous Page
</a>
{{ end }}
{{ if .Paginator.HasNext }}
<a id="next" href="{{ .Paginator.Next.URL }}">
Next Page
</a>
{{ end }}
</section>