mirror of
https://github.com/rottenwheel/revuoxmrtheme.git
synced 2024-11-09 12:10:04 +00:00
11 lines
No EOL
347 B
HTML
11 lines
No EOL
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> |