hugo-theme-hello-friend/layouts/partials/pagination.html
2018-07-20 19:14:22 +02:00

10 lines
No EOL
380 B
HTML

<div class="pagination">
<div class="pagination__buttons">
{{ if .Paginator.HasPrev }}
<a class="button next" href="{{ .Paginator.Prev.URL }}"><span class="button__icon"></span></a>
{{ end }}
{{ if .Paginator.HasNext }}
<a class="button previous" href="{{ .Paginator.Next.URL }}"><span class="button__icon"></span></a>
{{ end }}
</div>
</div>