You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
401 B
HTML

{{ $paginator := .Paginator }}
{{ if gt $paginator.TotalPages 1 }}
<section class="page-select">
<h4>
{{ if $paginator.HasPrev }}
<a class="pagination-previous" href="{{ $paginator.Prev.URL }}"><- Previous Page</a> |
{{ end }}
{{ if $paginator.HasNext }}
<a class="pagination-next" href="{{ $paginator.Next.URL }}">Next page -> </a></h4>
{{ end }}
</section>
{{ end }}