HUGO
News Docs Themes Community GitHub

ByLength

Returns the given page collection sorted by content length in ascending order.

Syntax

PAGES.ByLength

Returns

page.Pages
{{ 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 }}