title |
description |
categories |
menu |
keywords |
signature |
group |
`group` groups a list of pages. |
|
|
|
|
{{< code file="layouts/partials/groups.html" >}}
{{ $new := .Site.RegularPages | first 10 | group "New" }}
{{ $old := .Site.RegularPages | last 10 | group "Old" }}
{{ $groups := slice $new $old }}
{{ range $groups }}
{{ .Key }}{{/* Prints "New", "Old" */}}
{{ end }}
{{< /code >}}
The page group you get from group
is of the same type you get from the built-in group methods in Hugo. The above example can even be paginated.