mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
2c0d1ccdcd
73f355ce Update theme 83ff50c2 Use example.com in examples 71292134 Add alias news > release-notes 2e15f642 Update theme 8eef09d2 Add Pygments configuration 572b9e75 Clean up the code shortcode use a1b2fd3b Remove the code fence language codes 1473b1d9 Remove redundant text b92c2042 Update theme 8f439c28 Edit contributing section in README 8bcf8a19 Add contributing section to README 4c44ee1c Fix broken content file 2bdc7710 Clarify .Data.Pages sorting in lists.md 092271c2 Use infinitive mood for main titles b9b8abef Update theme to reflect change to home page content b897b71b Change copy to use sentence case fd675ee5 Enable RSS feed for sections 060a5e27 Correct movie title in taxonomies.md 6a5ca96a Update displayed site name for Hub 22f4b7a4 Add example of starting up the local server d9612cb3 Update theme a8c3988a Update theme 4198189d Update theme 12d6b016 Update theme 2b1c4197 Update theme b6d90a1e Fix News release titles cfe751db Add some build info to README git-subtree-dir: docs git-subtree-split: 73f355ce0dd88d032062ea70067431ab980cdd8d
379 lines
9.7 KiB
Markdown
379 lines
9.7 KiB
Markdown
---
|
||
title: Ordere and Grouping Hugo Lists
|
||
linktitle: List Ordering and Grouping
|
||
description: You can group or order your content in both your templating and content front matter.
|
||
date: 2017-02-01
|
||
publishdate: 2017-02-01
|
||
lastmod: 2017-02-01
|
||
categories: [templates]
|
||
#tags: []
|
||
menu:
|
||
docs:
|
||
parent: "templates"
|
||
weight: 27
|
||
weight: 27
|
||
sections_weight: 27
|
||
draft: true
|
||
aliases: [/templates/ordering/,/templates/grouping/]
|
||
toc: true
|
||
notes: This was originally going to be a separate page on the new docs site but it now makes more sense to keep everything within the templates/lists page. - rdwatters, 2017-03-12.
|
||
---
|
||
|
||
In Hugo, A list template is any template that will be used to render multiple pieces of content in a single HTML page.
|
||
|
||
## Example List Templates
|
||
|
||
### Section Template
|
||
|
||
This list template is used for [spf13.com](http://spf13.com/). It makes use of [partial templates][partials]. All examples use a [view](/templates/views/) called either "li" or "summary."
|
||
|
||
{{< code file="layouts/section/post.html" >}}
|
||
{{ partial "header.html" . }}
|
||
{{ partial "subheader.html" . }}
|
||
|
||
<section id="main">
|
||
<div>
|
||
<h1 id="title">{{ .Title }}</h1>
|
||
<ul id="list">
|
||
{{ range .Data.Pages }}
|
||
{{ .Render "li"}}
|
||
{{ end }}
|
||
</ul>
|
||
</div>
|
||
</section>
|
||
{{ partial "footer.html" . }}
|
||
{{< /code >}}
|
||
|
||
### Taxonomy Template
|
||
|
||
{{< code file="layouts/_default/taxonomies.html" download="taxonomies.html" >}}
|
||
{{ define "main" }}
|
||
<section id="main">
|
||
<div>
|
||
<h1 id="title">{{ .Title }}</h1>
|
||
{{ range .Data.Pages }}
|
||
{{ .Render "summary"}}
|
||
{{ end }}
|
||
</div>
|
||
</section>
|
||
{{ end }}
|
||
{{< /code >}}
|
||
|
||
## Order Content
|
||
|
||
Hugo lists render the content based on metadata provided in the [front matter](/content-management/front-matter/)..
|
||
|
||
Here are a variety of different ways you can order the content items in
|
||
your list templates:
|
||
|
||
### Default: Weight > Date
|
||
|
||
{{< code file="layouts/partials/order-default.html" >}}
|
||
<ul class="pages">
|
||
{{ range .Data.Pages }}
|
||
<li>
|
||
<h1><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
|
||
<time>{{ .Date.Format "Mon, Jan 2, 2006" }}</time>
|
||
</li>
|
||
{{ end }}
|
||
</ul>
|
||
{{< /code >}}
|
||
|
||
### By Weight
|
||
|
||
{{< code file="layouts/partials/by-weight.html" >}}
|
||
{{ range .Data.Pages.ByWeight }}
|
||
<li>
|
||
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
||
<div class="meta">{{ .Date.Format "Mon, Jan 2, 2006" }}</div>
|
||
</li>
|
||
{{ end }}
|
||
{{< /code >}}
|
||
|
||
### By Date
|
||
|
||
{{< code file="layouts/partials/by-date.html" >}}
|
||
{{ range .Data.Pages.ByDate }}
|
||
<li>
|
||
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
||
<div class="meta">{{ .Date.Format "Mon, Jan 2, 2006" }}</div>
|
||
</li>
|
||
{{ end }}
|
||
{{< /code >}}
|
||
|
||
### By Publish Date
|
||
|
||
{{< code file="layouts/partials/by-publish-date.html" >}}
|
||
{{ range .Data.Pages.ByPublishDate }}
|
||
<li>
|
||
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
||
<div class="meta">{{ .PublishDate.Format "Mon, Jan 2, 2006" }}</div>
|
||
</li>
|
||
{{ end }}
|
||
{{< /code >}}
|
||
|
||
### By Expiration Date
|
||
|
||
{{< code file="layouts/partials/by-expiry-date.html" >}}
|
||
{{ range .Data.Pages.ByExpiryDate }}
|
||
<li>
|
||
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
||
<div class="meta">{{ .ExpiryDate.Format "Mon, Jan 2, 2006" }}</div>
|
||
</li>
|
||
{{ end }}
|
||
{{< /code >}}
|
||
|
||
### By Last Modified Date
|
||
|
||
{{< code file="layouts/partials/by-last-mod.html" >}}
|
||
{{ range .Data.Pages.ByLastmod }}
|
||
<li>
|
||
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
||
<div class="meta">{{ .Date.Format "Mon, Jan 2, 2006" }}</div>
|
||
</li>
|
||
{{ end }}
|
||
{{< /code >}}
|
||
|
||
### By Length
|
||
|
||
{{< code file="layouts/partials/by-length.html" >}}
|
||
{{ range .Data.Pages.ByLength }}
|
||
<li>
|
||
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
||
<div class="meta">{{ .Date.Format "Mon, Jan 2, 2006" }}</div>
|
||
</li>
|
||
{{ end }}
|
||
{{< /code >}}
|
||
|
||
|
||
### By Title
|
||
|
||
{{< code file="layouts/partials/by-title.html" >}}
|
||
{{ range .Data.Pages.ByTitle }}
|
||
<li>
|
||
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
||
<div class="meta">{{ .Date.Format "Mon, Jan 2, 2006" }}</div>
|
||
</li>
|
||
{{ end }}
|
||
{{< /code >}}
|
||
|
||
### By Link Title
|
||
|
||
{{< code file="layouts/partials/by-link-title.html" >}}
|
||
{{ range .Data.Pages.ByLinkTitle }}
|
||
<li>
|
||
<a href="{{ .Permalink }}">{{ .LinkTitle }}</a>
|
||
<div class="meta">{{ .Date.Format "Mon, Jan 2, 2006" }}</div>
|
||
</li>
|
||
{{ end }}
|
||
{{< /code >}}
|
||
|
||
### By Parameter
|
||
|
||
Order based on the specified front matter parameter. Content that does not have the specified front matter field will use the site's `.Site.Params` default. If the parameter is not found at all in some entries, those entries will appear together at the end of the ordering.
|
||
|
||
The below example sorts a list of posts by their rating.
|
||
|
||
{{< code file="layouts/partials/by-rating.html" >}}
|
||
{{ range (.Data.Pages.ByParam "rating") }}
|
||
<!-- ... -->
|
||
{{ end }}
|
||
{{< /code >}}
|
||
|
||
If the front matter field of interest is nested beneath another field, you can
|
||
also get it:
|
||
|
||
{{< code file="layouts/partials/by-nested-param.html" >}}
|
||
{{ range (.Data.Pages.ByParam "author.last_name") }}
|
||
<!-- ... -->
|
||
{{ end }}
|
||
{{< /code >}}
|
||
|
||
### Reverse Order
|
||
|
||
Reversing order can be applied to any of the above methods. The following uses `ByDate` as an example:
|
||
|
||
{{< code file="layouts/partials/by-date-reverse.html" >}}
|
||
{{ range .Data.Pages.ByDate.Reverse }}
|
||
<li>
|
||
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
||
<div class="meta">{{ .Date.Format "Mon, Jan 2, 2006" }}</div>
|
||
</li>
|
||
{{ end }}
|
||
{{< /code >}}
|
||
|
||
## Group Content
|
||
|
||
Hugo provides some functions for grouping pages by Section, Type, Date, etc.
|
||
|
||
### By Page Field
|
||
|
||
{{< code file="layouts/partials/by-page-field.html" >}}
|
||
{{ range .Data.Pages.GroupBy "Section" }}
|
||
<h3>{{ .Key }}</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 >}}
|
||
|
||
### By Page date
|
||
|
||
{{< code file="layouts/partials/by-page-date.html" >}}
|
||
{{ range .Data.Pages.GroupByDate "2006-01" }}
|
||
<h3>{{ .Key }}</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 >}}
|
||
|
||
### By Page publish date
|
||
|
||
{{< code file="layouts/partials/by-page-publish-date.html" >}}
|
||
{{ range .Data.Pages.GroupByPublishDate "2006-01" }}
|
||
<h3>{{ .Key }}</h3>
|
||
<ul>
|
||
{{ range .Pages }}
|
||
<li>
|
||
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
||
<div class="meta">{{ .PublishDate.Format "Mon, Jan 2, 2006" }}</div>
|
||
</li>
|
||
{{ end }}
|
||
</ul>
|
||
{{ end }}
|
||
{{< /code >}}
|
||
|
||
### By Page Param
|
||
|
||
{{< code file="layouts/partials/by-page-param.html" >}}
|
||
{{ range .Data.Pages.GroupByParam "param_key" }}
|
||
<h3>{{ .Key }}</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 >}}
|
||
|
||
### By Page Param in Date Format
|
||
|
||
{{< code file="layouts/partials/by-page-param-as-date.html" >}}
|
||
{{ range .Data.Pages.GroupByParamDate "param_key" "2006-01" }}
|
||
<h3>{{ .Key }}</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 >}}
|
||
|
||
### Reverse Key Order
|
||
|
||
The ordering of the groups is performed by keys in alphanumeric order (A–Z, 1–100) and in reverse chronological order (newest first) for dates.
|
||
|
||
While these are logical defaults, they are not always the desired order. There are two different syntaxes to change the order, both of which work the same way. You can use your preferred syntax.
|
||
|
||
#### Reverse Method
|
||
|
||
```
|
||
{{ range (.Data.Pages.GroupBy "Section").Reverse }}
|
||
```
|
||
|
||
```
|
||
{{ range (.Data.Pages.GroupByDate "2006-01").Reverse }}
|
||
```
|
||
|
||
|
||
#### Provide the Alternate Direction
|
||
|
||
```
|
||
{{ range .Data.Pages.GroupByDate "2006-01" "asc" }}
|
||
```
|
||
|
||
```
|
||
{{ range .Data.Pages.GroupBy "Section" "desc" }}
|
||
```
|
||
|
||
### Order Within Groups
|
||
|
||
Because Grouping returns a `{{.Key}}` and a slice of pages, all of the ordering methods listed above are available.
|
||
|
||
In the following example, groups are ordered chronologically and then content
|
||
within each group is ordered alphabetically by title.
|
||
|
||
{{< code file="layouts/partials/by-group-by-page.html" >}}
|
||
{{ range .Data.Pages.GroupByDate "2006-01" "asc" }}
|
||
<h3>{{ .Key }}</h3>
|
||
<ul>
|
||
{{ range .Pages.ByTitle }}
|
||
<li>
|
||
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
||
<div class="meta">{{ .Date.Format "Mon, Jan 2, 2006" }}</div>
|
||
</li>
|
||
{{ end }}
|
||
</ul>
|
||
{{ end }}
|
||
{{< /code >}}
|
||
|
||
## Filter and Limiting Lists
|
||
|
||
Sometimes you only want to list a subset of the available content. A common request is to only display “Posts” on the homepage. You can accomplish this with the `where` function.
|
||
|
||
### `where`
|
||
|
||
`where` works in a similar manner to the `where` keyword in SQL. It selects all elements of the array or slice that match the provided field and value. `where` takes three arguments:
|
||
|
||
1. `array` or a `slice of maps or structs`
|
||
2. `key` or `field name`
|
||
3. `match value`
|
||
|
||
{{< code file="layouts/_default/.html" >}}
|
||
{{ range where .Data.Pages "Section" "post" }}
|
||
{{ .Content }}
|
||
{{ end }}
|
||
{{< /code >}}
|
||
|
||
### `first`
|
||
|
||
`first` works in a similar manner to the [`limit` keyword in SQL][limitkeyword]. It reduces the array to only the `first N` elements. It takes the array and number of elements as input. `first` takes two arguments:
|
||
|
||
1. `array` or `slice of maps or structs`
|
||
2. `number of elements`
|
||
|
||
{{< code file="layout/_default/section.html" >}}
|
||
{{ range first 10 .Data.Pages }}
|
||
{{ .Render "summary" }}
|
||
{{ end }}
|
||
{{< /code >}}
|
||
|
||
### `first` and `where` Together
|
||
|
||
Using `first` and `where` together can be very powerful:
|
||
|
||
{{< code file="first-and-where-together.html" >}}
|
||
{{ range first 5 (where .Data.Pages "Section" "post") }}
|
||
{{ .Content }}
|
||
{{ end }}
|
||
{{< /code >}}
|
||
|
||
|
||
[views]: /templates/views/
|