HUGO
Menu
GitHub 87548 stars Mastodon

ByPublishDate

返回給定頁面集合按發布日期升序排序。

Syntax

PAGES.ByPublishDate

Returns

page.Pages

按發布日期排序時,值由您的 站點配置 確定,默認為 front matter 中的 publishDate 字段。

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

要按降序排序:

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

Last updated: January 1, 0001
Improve this page