mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
26 lines
560 B
Markdown
26 lines
560 B
Markdown
---
|
|||
title: TotalNumberOfElements
|
|||
description: Returns the number of pages in the pager collection.
|
|||
categories: []
|
|||
keywords: []
|
|||
action:
|
|||
related:
|
|||
- methods/pager/NumberOfElements
|
|||
- methods/page/Paginate
|
|||
returnType: int
|
|||
signatures: [PAGER.TotalNumberOfElements]
|
|||
---
|
|||
|
|||
```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 }}
|
|||
{{ .TotalNumberOfElements }}
|
|||
{{ end }}
|
|||
```
|