cb18a5183 Fix broken link 07a0198bf Config: Place Google Analytics tag ID under the services key 4bf0c719f Fix typo 50d8ad1af Fix muiltilingual menu definition instructions 1a32519a9 Fix typos 6f34ca8e0 Explain usage of front matter to target a template 5bd977257 Improve goldmark config docs 447632938 Remove Docker notes from installation instructions 84741d173 Update reference to hugo.work 0338d7c71 Fix menu template f5d2f5ed4 Fix typos in content/en/functions/fmt a3a40ff99 Add return type to functions 85ac3e779 Remove outdated feature image d47d889e4 Fix signatures 7551ba28f Document safe.JSStr function e77993be0 Document keyVals function 4dba20db3 Update theme babf91544 Update echoparam 8c8203efa Adjust related functions 4cb1b30fc Fix example ba95eca64 Improve showcase prose 5d3dcf366 Add Overmind Studios showcase 8d634ac70 Change code blocks from indented to fenced cfab978e6 Add missing code fences 407dd5c47 Limit related pages for functions to other functions 9fa67d981 Fix .Site.LastChange doc 393aa16d0 netlify: Hugo 0.119.0 f864af97a docs: Even more about images.Process 9d772d5f0 docs: More about images.Process bc655f869 docs: Regen docshelper 41c3536d1 Merge commit '9aec42c5452b3eb224888c50ba1c3f3b68a447e9' 918ed53f4 Add images.Process filter 573645883 Add $image.Process a1151b0fd Add images.Opacity filter git-subtree-dir: docs git-subtree-split: cb18a5183fc62f301ffde50b8c39f03e4b897aec
3.2 KiB
title | linkTitle | description | categories | keywords | menu | function | relatedFunctions | aliases | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
collections.Sort | sort | Sorts slices, maps, and page collections. |
|
|
|
|
|
The KEY
is optional when sorting slices in ascending order, otherwise it is required. When sorting slices, use the literal value
in place of the KEY
. See examples below.
The ORDER
may be either asc
(ascending) or desc
(descending). The default sort order is ascending.
Sort a slice
The examples below assume this site configuration:
{{< code-toggle file="hugo" copy=false >}} [params] grades = ['b','a','c'] {{< /code-toggle >}}
Ascending order
Sort slice elements in ascending order using either of these constructs:
{{< code file="layouts/_default/single.html" copy=false >}} {{ sort site.Params.grades }} → [a b c] {{ sort site.Params.grades "value" "asc" }} → [a b c] {{< /code >}}
In the examples above, value
is the KEY
representing the value of the slice element.
Descending order
Sort slice elements in descending order:
{{< code file="layouts/_default/single.html" copy=false >}} {{ sort site.Params.grades "value" "desc" }} → [c b a] {{< /code >}}
In the example above, value
is the KEY
representing the value of the slice element.
Sort a map
The examples below assume this site configuration:
{{< code-toggle file="hugo" copy=false >}} [params.authors.a] firstName = "Marius" lastName = "Pontmercy" [params.authors.b] firstName = "Victor" lastName = "Hugo" [params.authors.c] firstName = "Jean" lastName = "Valjean" {{< /code-toggle >}}
{{% note %}}
When sorting maps, the KEY
argument must be lowercase.
{{% /note %}}
Ascending order
Sort map objects in ascending order using either of these constructs:
{{< code file="layouts/_default/single.html" copy=false >}} {{ range sort site.Params.authors "firstname" }} {{ .firstName }} {{ end }}
{{ range sort site.Params.authors "firstname" "asc" }} {{ .firstName }} {{ end }} {{< /code >}}
These produce:
Jean Marius Victor
Descending order
Sort map objects in descending order:
{{< code file="layouts/_default/single.html" copy=false >}} {{ range sort site.Params.authors "firstname" "desc" }} {{ .firstName }} {{ end }} {{< /code >}}
This produces:
Victor Marius Jean
Sort a page collection
Although you can use the sort
function to sort a page collection, Hugo provides built-in methods for sorting page collections by:
- weight
- linktitle
- title
- front matter parameter
- date
- expiration date
- last modified date
- publish date
- length
In this contrived example, sort the site's regular pages by .Type
in descending order:
{{< code file="layouts/_default/home.html" copy=false >}} {{ range sort site.RegularPages "Type" "desc" }}