cfd74b57d Add a config file update step. 5957d8815 Wrap cache configuration in code-toggle 914405c0e capitalization and indentation fix for taxonomies page (#1159) 223b80f42 Fix page kinds shortcode not rendering on Taxonomies page (#1158) a9b6fa984 Clarify weight description. 29e121681 Warn about zero weights in front matter. 27ce7ba8c Release 0.73.0 e9596b2ee Merge branch 'temp73' 074a270cd releaser: Add release notes to /docs for release of 0.73.0 4f56a9fc0 width fix of expanding code box in documentation (#1156) f27254d60 css fix of expanding code box in documentation (#1155) 43b576178 Fix incorrect directory name in quick-start (#1154) 16726eacf Add GroupByLastmod 73c31758e Fix for broken link again (#1151) d07067295 Fix broken link (#1144) bc0b484d1 Rename taxonomy kinds from taxonomy to term, taxonomyTerm to taxonomy 674d71842 Fix Typo on Docker section of installation page b87778165 Merge commit 'efa74c5c6e6ff1daddeb5834ea7c69bed2acf171' c7cdebed3 tpl/crypto: Add hmac 260130cc0 Allow hook template per section/type 1f70519d8 releaser: Add release notes to /docs for release of 0.72.0 8516d540c Merge commit '9e1dcefc5f559944b70d2fa520f6acd5c56a69f2' c49195c69 common/maps: Add Scratch.Values 78072df81 Add redirect support to the server 90ca0af6b Fix typo in install instructions git-subtree-dir: docs git-subtree-split: cfd74b57d968d98f88d3ddaee651d9cbe79b7ce1
19 KiB
title | linktitle | description | date | publishdate | lastmod | categories | keywords | menu | weight | sections_weight | draft | aliases | toc | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Lists of Content in Hugo | List Page Templates | Lists have a specific meaning and usage in Hugo when it comes to rendering your site homepage, section page, taxonomy list, or taxonomy terms list. | 2017-02-01 | 2017-02-01 | 2017-02-01 |
|
|
|
22 | 22 | false |
|
true |
What is a List Page Template?
{{< youtube 8b2YTSMdMps >}}
A list page template is a template used to render multiple pieces of content in a single HTML page. The exception to this rule is the homepage, which is still a list but has its own dedicated template.
Hugo uses the term list in its truest sense; i.e. a sequential arrangement of material, especially in alphabetical or numerical order. Hugo uses list templates on any output HTML page where content is traditionally listed:
For template lookup order, see Template Lookup.
The idea of a list page comes from the hierarchical mental model of the web and is best demonstrated visually:
List Defaults
Default Templates
Since section lists and taxonomy lists (N.B., not taxonomy terms lists) are both lists with regards to their templates, both have the same terminating default of _default/list.html
or themes/<THEME>/layouts/_default/list.html
in their lookup order. In addition, both section lists and taxonomy lists have their own default list templates in _default
.
See Template Lookup Order for the complete reference.
Add Content and Front Matter to List Pages
Since v0.18, everything in Hugo is a Page
. This means list pages and the homepage can have associated content files (i.e. _index.md
) that contain page metadata (i.e., front matter) and content.
This new model allows you to include list-specific front matter via .Params
and also means that list templates (e.g., layouts/_default/list.html
) have access to all page variables.
{{% note %}}
It is important to note that all _index.md
content files will render according to a list template and not according to a single page template.
{{% /note %}}
Example Project Directory
The following is an example of a typical Hugo project directory's content:
.
...
├── content
| ├── posts
| | ├── _index.md
| | ├── post-01.md
| | └── post-02.md
| └── quote
| | ├── quote-01.md
| | └── quote-02.md
...
Using the above example, let's assume you have the following in content/posts/_index.md
:
{{< code file="content/posts/_index.md" >}}
title: My Go Journey date: 2017-03-23 publishdate: 2017-03-24
I decided to start learning Go in March 2017.
Follow my journey through this new blog. {{< /code >}}
You can now access this _index.md
's' content in your list template:
{{< code file="layouts/_default/list.html" download="list.html" >}} {{ define "main" }}
{{.Title}}
{{.Content}}-
{{ range .Pages }}
- {{.Date.Format "2006-01-02"}} | {{.Title}} {{ end }}
This above will output the following HTML:
{{< code file="example.com/posts/index.html" copy="false" >}}
My Go Journey
I decided to start learning Go in March 2017.
Follow my journey through this new blog.
List Pages Without _index.md
You do not have to create an _index.md
file for every list page (i.e. section, taxonomy, taxonomy terms, etc) or the homepage. If Hugo does not find an _index.md
within the respective content section when rendering a list template, the page will be created but with no {{.Content}}
and only the default values for .Title
etc.
Using this same layouts/_default/list.html
template and applying it to the quotes
section above will render the following output. Note that quotes
does not have an _index.md
file to pull from:
{{< code file="example.com/quote/index.html" copy="false" >}}
Quotes
{{% note %}}
The default behavior of Hugo is to pluralize list titles; hence the inflection of the quote
section to "Quotes" when called with the .Title
page variable. You can change this via the pluralizeListTitles
directive in your site configuration.
{{% /note %}}
Example List Templates
Section Template
This list template has been modified slightly from a template originally used in spf13.com. It makes use of partial templates for the chrome of the rendered page rather than using a base template. The examples that follow also use the content view templates li.html
or summary.html
.
{{< code file="layouts/section/posts.html" >}} {{ partial "header.html" . }} {{ partial "subheader.html" . }}
{{ .Title }}
-
{{ range .Pages }}
{{ .Render "li"}}
{{ end }}
Taxonomy Template
{{< code file="layouts/_default/taxonomy.html" download="taxonomy.html" >}} {{ define "main" }}
{{ .Title }}
{{ range .Pages }} {{ .Render "summary"}} {{ end }}Order Content
Hugo lists render the content based on metadata you provide in front matter. In addition to sane defaults, Hugo also ships with multiple methods to make quick work of ordering content inside list templates:
Default: Weight > Date > LinkTitle > FilePath
{{< code file="layouts/partials/default-order.html" >}}
-
{{ range .Pages }}
-
{{ .Title }}
{{ end }}
By Weight
Lower weight gets higher precedence. So content with lower weight will come first.
{{< code file="layouts/partials/by-weight.html" >}}
-
{{ range .Pages.ByWeight }}
-
{{ .Title }}
{{ end }}
By Date
{{< code file="layouts/partials/by-date.html" >}}
-
{{ range .Pages.ByDate }}
-
{{ .Title }}
{{ end }}
By Publish Date
{{< code file="layouts/partials/by-publish-date.html" >}}
-
{{ range .Pages.ByPublishDate }}
-
{{ .Title }}
{{ end }}
By Expiration Date
{{< code file="layouts/partials/by-expiry-date.html" >}}
-
{{ range .Pages.ByExpiryDate }}
-
{{ .Title }}
{{ end }}
By Last Modified Date
{{< code file="layouts/partials/by-last-mod.html" >}}
-
{{ range .Pages.ByLastmod }}
-
{{ .Title }}
{{ end }}
By Length
{{< code file="layouts/partials/by-length.html" >}}
-
{{ range .Pages.ByLength }}
-
{{ .Title }}
{{ end }}
By Title
{{< code file="layouts/partials/by-title.html" >}}
-
{{ range .Pages.ByTitle }}
-
{{ .Title }}
{{ end }}
By Link Title
{{< code file="layouts/partials/by-link-title.html" >}}
-
{{ range .Pages.ByLinkTitle }}
-
{{ .LinkTitle }}
{{ end }}
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.
{{< code file="layouts/partials/by-rating.html" >}}
{{ range (.Pages.ByParam "rating") }}
{{ end }} {{< /code >}}
If the targeted front matter field is nested beneath another field, you can access the field using dot notation.
{{< code file="layouts/partials/by-nested-param.html" >}} {{ range (.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 .Pages.ByDate.Reverse }}
-
{{ .Title }}
{{ end }}
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 .Pages.GroupBy "Section" }}
{{ .Key }}
-
{{ range .Pages }}
-
{{ .Title }}
{{ .Date.Format "Mon, Jan 2, 2006" }}
{{ end }}
In the above example, you may want {{.Title}}
to point the title
field you have added to your _index.md
file instead. You can access this value using the .GetPage
function:
{{< code file="layouts/partials/by-page-field.html" >}}
{{ range .Pages.GroupBy "Section" }}
{{ with $.Site.GetPage "section" .Key }}
{{.Title}}
{{ else }}{{ .Key | title }}
{{ end }}-
{{ range .Pages }}
-
{{ .Title }}
{{ .Date.Format "Mon, Jan 2, 2006" }}
{{ end }}
By Date
{{< code file="layouts/partials/by-page-date.html" >}}
{{ range .Pages.GroupByDate "2006-01" }}
{{ .Key }}
-
{{ range .Pages }}
-
{{ .Title }}
{{ .Date.Format "Mon, Jan 2, 2006" }}
{{ end }}
By Publish Date
{{< code file="layouts/partials/by-page-publish-date.html" >}}
{{ range .Pages.GroupByPublishDate "2006-01" }}
{{ .Key }}
-
{{ range .Pages }}
-
{{ .Title }}
{{ .PublishDate.Format "Mon, Jan 2, 2006" }}
{{ end }}
By Lastmod
{{< code file="layouts/partials/by-page-lastmod.html" >}}
{{ range .Pages.GroupByLastmod "2006-01" }}
{{ .Key }}
-
{{ range .Pages }}
-
{{ .Title }}
{{ .Lastmod.Format "Mon, Jan 2, 2006" }}
{{ end }}
By Expiry Date
{{< code file="layouts/partials/by-page-expiry-date.html" >}}
{{ range .Pages.GroupByExpiryDate "2006-01" }}
{{ .Key }}
-
{{ range .Pages }}
-
{{ .Title }}
{{ .ExpiryDate.Format "Mon, Jan 2, 2006" }}
{{ end }}
By Page Parameter
{{< code file="layouts/partials/by-page-param.html" >}}
{{ range .Pages.GroupByParam "param_key" }}
{{ .Key }}
-
{{ range .Pages }}
-
{{ .Title }}
{{ .Date.Format "Mon, Jan 2, 2006" }}
{{ end }}
By Page Parameter in Date Format
The following template takes grouping by date
a step further and uses Go's layout string. See the Format
function for more examples of how to use Go's layout string to format dates in Hugo.
{{< code file="layouts/partials/by-page-param-as-date.html" >}}
{{ range .Pages.GroupByParamDate "param_key" "2006-01" }}
{{ .Key }}
-
{{ range .Pages }}
-
{{ .Title }}
{{ .Date.Format "Mon, Jan 2, 2006" }}
{{ end }}
Reverse Key Order
Ordering of groups is performed by keys in alphanumeric order (A–Z, 1–100) and in reverse chronological order (i.e., with the newest first) for dates.
While these are logical defaults, they are not always the desired order. There are two different syntaxes to change Hugo's default ordering for groups, both of which work the same way.
1. Adding the Reverse Method
{{ range (.Pages.GroupBy "Section").Reverse }}
{{ range (.Pages.GroupByDate "2006-01").Reverse }}
2. Providing the Alternate Direction
{{ range .Pages.GroupByDate "2006-01" "asc" }}
{{ range .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.
Here is the ordering for the example that follows:
- Content is grouped by month according to the
date
field in front matter. - Groups are listed in ascending order (i.e., the oldest groups first)
- Pages within each respective group are ordered alphabetically according to the
title
.
{{< code file="layouts/partials/by-group-by-page.html" >}} {{ range .Pages.GroupByDate "2006-01" "asc" }}
{{ .Key }}
-
{{ range .Pages.ByTitle }}
-
{{ .Title }}
{{ .Date.Format "Mon, Jan 2, 2006" }}
{{ end }}
Filtering and Limiting Lists
Sometimes you only want to list a subset of the available content. A common is to only display posts from main sections on the blog's homepage.
See the documentation on where
function and
first
function for further details.