hugo/docs/content/en/methods/pager/PageGroups.md
2024-06-21 09:41:24 +02:00

702 B

title description categories keywords action
PageGroups Returns the page groups in the current pager.
related returnType signatures
methods/page/Paginate
page.PagesGroup
PAGER.PageGroups

Use the PageGroups method with any of the grouping methods.

{{ $pages := where site.RegularPages "Type" "posts" }}
{{ $paginator := .Paginate ($pages.GroupByDate "Jan 2006") }}

{{ range $paginator.PageGroups }}
  <h2>{{ .Key }}</h2>
  {{ range .Pages }}
    <h3><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h3>
  {{ end }}
{{ end }}

{{ template "_internal/pagination.html" . }}