mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
32 lines
780 B
Markdown
32 lines
780 B
Markdown
|
---
|
||
|
title: PagerSize
|
||
|
description: Returns the number of pages per pager.
|
||
|
categories: []
|
||
|
keywords: []
|
||
|
action:
|
||
|
related:
|
||
|
- methods/page/Paginate
|
||
|
returnType: int
|
||
|
signatures: [PAGER.PagerSize]
|
||
|
---
|
||
|
|
||
|
{{< 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].
|
||
|
|
||
|
[`Paginate`]: /methods/page/paginate/
|
||
|
[site configuration]: /templates/pagination/#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 }}
|
||
|
```
|