Back to Hugo

ByPublishDate

docs/content/en/methods/pages/ByPublishDate.md

0.165.0502 B
Original Source

When sorting by publish date, the value is determined by your project configuration, defaulting to the publishDate field in front matter.

go-html-template
{{ range .Pages.ByPublishDate }}
  <h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
{{ end }}

To sort in descending order:

go-html-template
{{ range .Pages.ByPublishDate.Reverse }}
  <h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
{{ end }}