group

将以下英文翻译为中文:

group

https://gohugo.io/functions/group/

group groups a list of pages.

语法

PAGES | group KEY

layouts/partials/groups.html

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
{{ $new := .Site.RegularPages | first 10 | group "New" }}
{{ $old := .Site.RegularPages | last 10 | group "Old" }}
{{ $groups := slice $new $old }}
{{ range $groups }}
<h3>{{ .Key }}{{/* Prints "New", "Old" */}}</h3>
<ul>
    {{ range .Pages }}
    <li>
    <a href="{{ .Permalink }}">{{ .Title }}</a>
    <div class="meta">{{ .Date.Format "Mon, Jan 2, 2006" }}</div>
    </li>
    {{ end }}
</ul>
{{ end }}

The page group you get from group is of the same type you get from the built-in group methods in Hugo. The above example can even be paginated.

另请参阅