aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/content/en/methods/pages/GroupByParam.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/en/methods/pages/GroupByParam.md')
-rw-r--r--docs/content/en/methods/pages/GroupByParam.md36
1 files changed, 0 insertions, 36 deletions
diff --git a/docs/content/en/methods/pages/GroupByParam.md b/docs/content/en/methods/pages/GroupByParam.md
deleted file mode 100644
index 9c63ab902..000000000
--- a/docs/content/en/methods/pages/GroupByParam.md
+++ /dev/null
@@ -1,36 +0,0 @@
----
-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 }}
-```