mirror of
https://github.com/rottenwheel/revuoxmrtheme.git
synced 2024-11-10 04:30:06 +00:00
11 lines
347 B
HTML
11 lines
347 B
HTML
|
<div class="pagination">
|
||
|
{{ if .Paginator.HasPrev }}
|
||
|
<a href="{{ .Paginator.Prev.URL }}" class="page-item prev">«</a>
|
||
|
{{ end }}
|
||
|
|
||
|
<p class="page-numbers-display">{{ .Paginator.PageNumber }} of {{ .Paginator.TotalPages }}</p>
|
||
|
|
||
|
{{ if .Paginator.HasNext }}
|
||
|
<a href="{{ .Paginator.Next.URL }}" class="page-item next">»</a>
|
||
|
{{ end }}
|
||
|
</div>
|