-
-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes gohugoio/hugoDocs#597
- Loading branch information
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
title: group | ||
description: "`group` groups a list of pages." | ||
date: 2018-09-14 | ||
categories: [functions] | ||
menu: | ||
docs: | ||
parent: "functions" | ||
keywords: [collections] | ||
signature: ["PAGES | group KEY"] | ||
hugoversion: "0.49" | ||
--- | ||
|
||
{{< code file="layouts/partials/groups.html" >}} | ||
{{ $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 }} | ||
{{< /code >}} | ||
|
||
|
||
|
||
The page group you get from `group` is of the same type you get from the built-in [group methods](/templates/lists#group-content) in Hugo. The above example can even be [paginated](/templates/pagination/#list-paginator-pages). | ||
|
||
|
||
|
||
|