--- title: Pagers description: Returns the pagers collection. categories: [] keywords: [] action: related: - methods/page/Paginate returnType: page.pagers signatures: [PAGER.Pagers] --- Use the `Pagers` method to build navigation between pagers. ```go-html-template {{ $pages := where site.RegularPages "Type" "posts" }} {{ $paginator := .Paginate $pages }} {{ range $paginator.Pages }}

{{ .LinkTitle }}

{{ end }} {{ with $paginator }} {{ end }} ```