aboutsummaryrefslogtreecommitdiffhomepage
path: root/content/en/methods/pages/Next.md
diff options
context:
space:
mode:
Diffstat (limited to 'content/en/methods/pages/Next.md')
-rw-r--r--content/en/methods/pages/Next.md44
1 files changed, 3 insertions, 41 deletions
diff --git a/content/en/methods/pages/Next.md b/content/en/methods/pages/Next.md
index b7284609f..dcf1231ac 100644
--- a/content/en/methods/pages/Next.md
+++ b/content/en/methods/pages/Next.md
@@ -1,55 +1,17 @@
---
title: Next
-description: Returns the next page in a local page collection, relative to the given page.
+description: Returns the next page in a page collection, relative to the given page.
categories: []
keywords: []
action:
related:
- methods/pages/Prev
- methods/page/Next
- - methods/page/NextInSection
- methods/page/Prev
+ - methods/page/NextInSection
- methods/page/PrevInSection
returnType: page.Page
signatures: [PAGES.Next PAGE]
-toc: true
---
-The behavior of the `Prev` and `Next` methods on a `Pages` objects is probably the reverse of what you expect.
-
-With this content structure and the page collection sorted by weight in ascending order:
-
-```text
-content/
-├── pages/
-│ ├── _index.md
-│ ├── page-1.md <-- front matter: weight = 10
-│ ├── page-2.md <-- front matter: weight = 20
-│ └── page-3.md <-- front matter: weight = 30
-└── _index.md
-```
-
-When you visit page-2:
-
-- The `Prev` method points to page-3
-- The `Next` method points to page-1
-
-{{% note %}}
-Use the opposite label in your navigation links as shown in the example below.
-{{% /note %}}
-
-```go-html-template
-{{ $pages := where .Site.RegularPages.ByWeight "Section" "pages" }}
-
-{{ with $pages.Next . }}
- <a href="{{ .RelPermalink }}">Previous</a>
-{{ end }}
-
-{{ with $pages.Prev . }}
- <a href="{{ .RelPermalink }}">Next</a>
-{{ end }}
-```
-
-## Compare to Page methods
-
-{{% include "methods/_common/next-prev-on-page-vs-next-prev-on-pages.md" %}}
+{{% include "methods/pages/_common/next-and-prev.md" %}}