--- title: collections.Group description: Groups the given page collection by the given key. categories: [] keywords: [] action: aliases: [group] related: [] returnType: any signatures: [collections.Group KEY PAGES] aliases: [/functions/group] --- ```go-html-template {{ $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 }} ``` The page group you get from `group` is of the same type you get from the built-in [group methods](/quick-reference/page-collections/#group) in Hugo. The example above can be [paginated](/templates/pagination/).