--- title: Prev description: Returns the previous pager in the pager collection. categories: [] keywords: [] params: functions_and_methods: returnType: page.Pager signatures: [PAGER.Prev] --- Use the `Prev` 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 }} ```