10 lines
347 B
HTML
10 lines
347 B
HTML
<section id="pagination">
|
|
{{ if .Paginator.HasPrev }}
|
|
<a href="{{ .Paginator.Prev.URL }}" rel="prev"><small>Previous Page</small></a>
|
|
{{ end }}
|
|
<small>{{ .Paginator.PageNumber }} of {{ .Paginator.TotalPages }}</small>
|
|
{{ if .Paginator.HasNext }}
|
|
<a href="{{ .Paginator.Next.URL }}" rel="next"><small>Next Page</small></a>
|
|
{{ end }}
|
|
</section>
|