Files
hugo/content/en/methods/pages/ByLength.md
T
2023-11-19 17:10:15 -08:00

510 B

title, description, categories, keywords, action
title description categories keywords action
ByLength Returns the given page collection sorted by content length in ascending order.
related returnType signatures
page.Pages
PAGES.ByLength
{{ 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 }}