mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-18 21:11:19 +02:00
525 B
525 B
title, description, categories, keywords, params
title | description | categories | keywords | params | |||||||
---|---|---|---|---|---|---|---|---|---|---|---|
ByLength | Returns the given page collection sorted by content length in ascending order. |
|
{{ range .Pages.ByLength }}
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
{{ end }}
To sort in descending order:
{{ range .Pages.ByLength.Reverse }}
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
{{ end }}