mirror of https://github.com/gohugoio/hugo
771 B
771 B
title | description | categories | keywords | params | |||||||
---|---|---|---|---|---|---|---|---|---|---|---|
PagerSize | Returns the number of pages per pager. |
|
{{< new-in 0.128.0 />}}
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 site 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 }}