summaryrefslogtreecommitdiffstats
path: root/themes/Brine/layouts/partials/pagination.html
blob: 7ed3bce81e123ad3098f7b10f6148c1d8b7a0305 (plain) (blame)
1
2
3
4
5
6
{{ with $.Paginator }}{{ if gt .TotalPages 1 }}
			<p class="pagination">
				{{ with .Prev }}<a class="page-link" href="{{ .URL }}">Previous</a></li>
				{{ end }}{{ range .Pagers }}<a class="page-link{{ if eq .PageNumber $.Paginator.PageNumber }} a{{ end }}" href="{{ .URL }}">{{ .PageNumber }}</a>
				{{ end }}{{ with .Next }}<a class="page-link" href="{{ .URL }}">Next</a>{{ end }}
			</p>{{ end }}{{ end }}