--- title: GroupBy description: Returns the given page collection grouped by the given field in ascending order. categories: [] keywords: [] action: related: [] returnType: page.PagesGroup signatures: ['PAGES.GroupBy FIELD [SORT]'] --- {{% include "methods/pages/_common/group-sort-order.md" %}} ```go-html-template {{ range .Pages.GroupBy "Section" }}

{{ .Key }}

{{ end }} ``` To sort the groups in descending order: ```go-html-template {{ range .Pages.GroupBy "Section" "desc" }}

{{ .Key }}

{{ end }} ```