mirror of https://github.com/gohugoio/hugo
510 B
510 B
title | description | categories | keywords | action | |||||||
---|---|---|---|---|---|---|---|---|---|---|---|
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 }}