GroupBy
Syntax
PAGES.GroupBy FIELD [SORT]
Returns
page.PagesGroup
对于可选的排序顺序,可以指定 asc
表示升序,或者 desc
表示降序。
{{ range .Pages.GroupBy "Section" }}
<p>{{ .Key }}</p>
<ul>
{{ range .Pages }}
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
{{ end }}
</ul>
{{ end }}
要按降序对分组进行排序:
{{ range .Pages.GroupBy "Section" "desc" }}
<p>{{ .Key }}</p>
<ul>
{{ range .Pages }}
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
{{ end }}
</ul>
{{ end }}