PagerSize
Returns the number of pages per pager.
- Syntax
- PAGER.PagerSize
- Returns
- int
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.
{{ $pages := where site.RegularPages "Type" "posts" }}
{{ $paginator := .Paginate $pages }}
{{ range $paginator.Pages }}
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
{{ end }}
{{ with $paginator }}
{{ .PagerSize }}
{{ end }}Last updated:
June 18, 2026
:
Merge commit 'c86d9f4aa8a58931f52df6516f10b67c807505fb' (be780afa7)
Improve this page