reachableceo.com/themes/JuiceBar/layouts/partials/pagination.html

15 lines
466 B
HTML
Raw Normal View History

2024-11-01 18:09:39 +00:00
<hr>
<section class="pagination" >
{{ if .Paginator.HasPrev }}
<button class="button ">
<a href="{{ .Paginator.Prev.URL }}" class="pag-link"> Prev </a>
</button>
{{ end }}
<label class="pag-link">Page {{ .Paginator.PageNumber}} of {{.Paginator.TotalPages}}</label>
{{ if .Paginator.HasNext }}
<button class="button" >
<a href="{{ .Paginator.Next.URL }}" class="pag-link"> Next </a>
</button>
{{ end }}
</section>