mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
83bef6955e
e161ea09d Add one more Chinese file to workaround reflect: Zero(nil) b595b3a21 Add more Chinese translation 56e4e95d9 Use lang.Merge to "fill in the gaps" for untranslated pages ef079406c Merge commit '650fac3a4e7d256f4505402ab44cfc3c804b8dea' 650fac3a4 Squashed 'themes/gohugoioTheme/' changes from a1768ebb..f31a3dc8 322eff899 Add Chinese language for menus d90b886e0 Fix Markdown table syntax in previous commit 737f3dfca Update the leaf bundle vs branch bundle table 09fa1bc4e Clarify that `.Now` is obsolete 879ea3f6a Make release notes somewhat more consistent 0113e2051 Move 0.40.2-relnotes into content/en/news 77578f5bf Move content/ into new contentDir content/en/ 4dcf7c709 Fix "reflect: Zero(nil)" error in showcase 63dd25505 Release 0.40.2 2076c0d56 releaser: Prepare repository for 0.41-DEV 070fe565e releaser: Add release notes to /docs for release of 0.40.2 4ce52e913 releaser: Bump versions for release of 0.40.2 41907c487 Fix typos in syntax-highlighting.md 91753ef3d Add missing backtick b77274301 Remove duplicate release notes (0.27, 0.27.1, 0.35) 6e00da316 Remove obsolete content/release-notes/ directory 00a6d8c02 Change en dash back to `--` in 0.38.2-relnotes 51b32dc00 Update archetypes.md d0e5c2307 Release 0.40.1 4538a6d5b releaser: Prepare repository for 0.41-DEV 91b391d70 releaser: Add release notes to /docs for release of 0.40.1 e0979d143 releaser: Bump versions for release of 0.40.1 7983967c2 Clean images fe3fdd77d Polish showcase for Flesland Flis e6dde3989 Showcase - Flesland Flis AS by Absoluttweb 73aa62290 Revive @spf13's special Hugo font add67b335 Release Hugo 0.40 c0a26e5a6 Merge branch 'temp40' beeabaaae releaser: Prepare repository for 0.41-DEV e67d5e985 releaser: Add release notes to /docs for release of 0.40 6cdd95273 releaser: Bump versions for release of 0.40 bee21fb9b Revive the other Hugo logos too 4f45e8fe1 Fix the link type attribute for RSS in examples 8c67dc89a Fix example in delimit doc e7f6c00d5 Revive the logo used on the forum 82b0cd26e Merge commit 'a215abf70e018f4bf40d6c09d8bd148d8684b33d' 119c8ca58 Merge commit 'd2ec1a06df8ab6b17ad05cb008d5701b40327d47' db4683bd2 Improve .Get docs 05260b886 .Get function: fix syntax signature git-subtree-dir: docs git-subtree-split: e161ea09d33e3199f4998e4d2e9068d5a850f042
155 lines
4.7 KiB
Markdown
155 lines
4.7 KiB
Markdown
---
|
|
title: Pagination
|
|
linktitle: Pagination
|
|
description: Hugo supports pagination for your homepage, section pages, and taxonomies.
|
|
date: 2017-02-01
|
|
publishdate: 2017-02-01
|
|
lastmod: 2017-02-01
|
|
categories: [templates]
|
|
keywords: [lists,sections,pagination]
|
|
menu:
|
|
docs:
|
|
parent: "templates"
|
|
weight: 140
|
|
weight: 140
|
|
sections_weight: 140
|
|
draft: false
|
|
aliases: [/extras/pagination,/doc/pagination/]
|
|
toc: true
|
|
---
|
|
|
|
The real power of Hugo pagination shines when combined with the [`where` function][where] and its SQL-like operators: [`first`][], [`last`][], and [`after`][]. You can even [order the content][lists] the way you've become used to with Hugo.
|
|
|
|
## Configure Pagination
|
|
|
|
Pagination can be configured in your [site configuration][configuration]:
|
|
|
|
`Paginate`
|
|
: default = `10`. This setting can be overridden within the template.
|
|
|
|
`PaginatePath`
|
|
: default = `page`. Allows you to set a different path for your pagination pages.
|
|
|
|
Setting `Paginate` to a positive value will split the list pages for the homepage, sections and taxonomies into chunks of that size. But note that the generation of the pagination pages for sections, taxonomies and homepage is *lazy* --- the pages will not be created if not referenced by a `.Paginator` (see below).
|
|
|
|
`PaginatePath` is used to adapt the `URL` to the pages in the paginator (the default setting will produce URLs on the form `/page/1/`.
|
|
|
|
## List Paginator Pages
|
|
|
|
{{% warning %}}
|
|
`.Paginator` is provided to help you build a pager menu. This feature is currently only supported on homepage and list pages (i.e., taxonomies and section lists).
|
|
{{% /warning %}}
|
|
|
|
There are two ways to configure and use a `.Paginator`:
|
|
|
|
1. The simplest way is just to call `.Paginator.Pages` from a template. It will contain the pages for *that page*.
|
|
2. Select a subset of the pages with the available template functions and ordering options, and pass the slice to `.Paginate`, e.g. `{{ range (.Paginate ( first 50 .Data.Pages.ByTitle )).Pages }}`.
|
|
|
|
For a given **Page**, it's one of the options above. The `.Paginator` is static and cannot change once created.
|
|
|
|
The global page size setting (`Paginate`) can be overridden by providing a positive integer as the last argument. The examples below will give five items per page:
|
|
|
|
* `{{ range (.Paginator 5).Pages }}`
|
|
* `{{ $paginator := .Paginate (where .Data.Pages "Type" "post") 5 }}`
|
|
|
|
It is also possible to use the `GroupBy` functions in combination with pagination:
|
|
|
|
```
|
|
{{ range (.Paginate (.Data.Pages.GroupByDate "2006")).PageGroups }}
|
|
```
|
|
|
|
## Build the navigation
|
|
|
|
The `.Paginator` contains enough information to build a paginator interface.
|
|
|
|
The easiest way to add this to your pages is to include the built-in template (with `Bootstrap`-compatible styles):
|
|
|
|
```
|
|
{{ template "_internal/pagination.html" . }}
|
|
```
|
|
|
|
{{% note "When to Create `.Paginator`" %}}
|
|
If you use any filters or ordering functions to create your `.Paginator` *and* you want the navigation buttons to be shown before the page listing, you must create the `.Paginator` before it's used.
|
|
{{% /note %}}
|
|
|
|
The following example shows how to create `.Paginator` before its used:
|
|
|
|
```
|
|
{{ $paginator := .Paginate (where .Data.Pages "Type" "post") }}
|
|
{{ template "_internal/pagination.html" . }}
|
|
{{ range $paginator.Pages }}
|
|
{{ .Title }}
|
|
{{ end }}
|
|
```
|
|
|
|
Without the `where` filter, the above example is even simpler:
|
|
|
|
```
|
|
{{ template "_internal/pagination.html" . }}
|
|
{{ range .Paginator.Pages }}
|
|
{{ .Title }}
|
|
{{ end }}
|
|
```
|
|
|
|
If you want to build custom navigation, you can do so using the `.Paginator` object, which includes the following properties:
|
|
|
|
`PageNumber`
|
|
: The current page's number in the pager sequence
|
|
|
|
`URL`
|
|
: The relative URL to the current pager
|
|
|
|
`Pages`
|
|
: The pages in the current pager
|
|
|
|
`NumberOfElements`
|
|
: The number of elements on this page
|
|
|
|
`HasPrev`
|
|
: Whether there are page(s) before the current
|
|
|
|
`Prev`
|
|
: The pager for the previous page
|
|
|
|
`HasNext`
|
|
: Whether there are page(s) after the current
|
|
|
|
`Next`
|
|
: The pager for the next page
|
|
|
|
`First`
|
|
: The pager for the first page
|
|
|
|
`Last`
|
|
: The pager for the last page
|
|
|
|
`Pagers`
|
|
: A list of pagers that can be used to build a pagination menu
|
|
|
|
`PageSize`
|
|
: Size of each pager
|
|
|
|
`TotalPages`
|
|
: The number of pages in the paginator
|
|
|
|
`TotalNumberOfElements`
|
|
: The number of elements on all pages in this paginator
|
|
|
|
## Additional information
|
|
|
|
The pages are built on the following form (`BLANK` means no value):
|
|
|
|
```
|
|
[SECTION/TAXONOMY/BLANK]/index.html
|
|
[SECTION/TAXONOMY/BLANK]/page/1/index.html => redirect to [SECTION/TAXONOMY/BLANK]/index.html
|
|
[SECTION/TAXONOMY/BLANK]/page/2/index.html
|
|
....
|
|
```
|
|
|
|
|
|
[`first`]: /functions/first/
|
|
[`last`]: /functions/last/
|
|
[`after`]: /functions/after/
|
|
[configuration]: /getting-started/configuration/
|
|
[lists]: /templates/lists/
|
|
[where]: /functions/where/
|