10 lines
249 B
HTML
10 lines
249 B
HTML
|
<div>
|
||
|
{{ if .Paginator.HasPrev }}
|
||
|
<a href="{{ .Paginator.Prev.URL }}">Previous</a>
|
||
|
{{ end }}
|
||
|
{{ .Paginator.PageNumber }} of {{ .Paginator.TotalPages }}
|
||
|
{{ if .Paginator.HasNext }}
|
||
|
<a href="{{ .Paginator.Next.URL }}">Next page</a>
|
||
|
{{ end }}
|
||
|
</div>
|