mirror of
https://github.com/vale981/smol
synced 2025-03-06 01:51:37 -05:00
9 lines
254 B
HTML
9 lines
254 B
HTML
<div>
|
|
{{ if .Paginator.HasPrev }}
|
|
<a href="{{ .Paginator.Prev.URL }}">Previous Page</a>
|
|
{{ end }}
|
|
{{ .Paginator.PageNumber }} of {{ .Paginator.TotalPages }}
|
|
{{ if .Paginator.HasNext }}
|
|
<a href="{{ .Paginator.Next.URL }}">Next Page</a>
|
|
{{ end }}
|
|
</div>
|