mirror of
https://github.com/tiennm99/hugoDocs.git
synced 2026-09-18 16:20:16 +00:00
807 B
807 B
title, description, categories, keywords, action
| title | description | categories | keywords | action | |||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| GroupByParam | Returns the given page collection grouped by the given parameter in ascending order. |
|
{{% include "methods/pages/_common/group-sort-order.md" %}}
{{ 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:
{{ range .Pages.GroupByParam "color" "desc" }}
<p>{{ .Key | title }}</p>
<ul>
{{ range .Pages }}
<li><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></li>
{{ end }}
</ul>
{{ end }}