mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
5fd1e74903
``` git subtree add --prefix=docs/ https://github.com/gohugoio/hugoDocs.git master --squash ``` Closes #11925
36 lines
807 B
Markdown
36 lines
807 B
Markdown
---
|
|
title: GroupByParam
|
|
description: Returns the given page collection grouped by the given parameter in ascending order.
|
|
categories: []
|
|
keywords: []
|
|
action:
|
|
related: []
|
|
returnType: page.PagesGroup
|
|
signatures: ['PAGES.GroupByParam PARAM [SORT]']
|
|
---
|
|
|
|
{{% include "methods/pages/_common/group-sort-order.md" %}}
|
|
|
|
```go-html-template
|
|
{{ range .Pages.GroupByParam "color" }}
|
|
<p>{{ .Key | title }}</p>
|
|
<ul>
|
|
{{ range .Pages }}
|
|
<li><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></li>
|
|
{{ end }}
|
|
</ul>
|
|
{{ end }}
|
|
```
|
|
|
|
To sort the groups in descending order:
|
|
|
|
```go-html-template
|
|
{{ range .Pages.GroupByParam "color" "desc" }}
|
|
<p>{{ .Key | title }}</p>
|
|
<ul>
|
|
{{ range .Pages }}
|
|
<li><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></li>
|
|
{{ end }}
|
|
</ul>
|
|
{{ end }}
|
|
```
|