Back to Hugo

PagerSize

docs/content/en/methods/pager/PagerSize.md

0.161.1558 B
Original Source

The number of pages per pager is determined by the optional second argument passed to the Paginate method, falling back to the pagerSize as defined in your project configuration.

go-html-template
{{ $pages := where site.RegularPages "Type" "posts" }}
{{ $paginator := .Paginate $pages }}

{{ range $paginator.Pages }}
  <h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
{{ end }}

{{ with $paginator }}
  {{ .PagerSize }}
{{ end }}