aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/content/en/methods/pager/URL.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/en/methods/pager/URL.md')
-rw-r--r--docs/content/en/methods/pager/URL.md39
1 files changed, 39 insertions, 0 deletions
diff --git a/docs/content/en/methods/pager/URL.md b/docs/content/en/methods/pager/URL.md
new file mode 100644
index 000000000..3daddbbd5
--- /dev/null
+++ b/docs/content/en/methods/pager/URL.md
@@ -0,0 +1,39 @@
+---
+title: URL
+description: Returns the URL of the current pager relative to the site root.
+categories: []
+keywords: []
+action:
+ related:
+ - methods/page/Paginate
+ returnType: string
+ signatures: [PAGER.URL]
+---
+
+Use the `URL` method to build navigation between pagers.
+
+```go-html-template
+{{ $pages := where site.RegularPages "Type" "posts" }}
+{{ $paginator := .Paginate $pages }}
+
+{{ range $paginator.Pages }}
+ <h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
+{{ end }}
+
+{{ with $paginator }}
+ <ul>
+ {{ with .First }}
+ <li><a href="{{ .URL }}">First</a></li>
+ {{ end }}
+ {{ with .Prev }}
+ <li><a href="{{ .URL }}">Previous</a></li>
+ {{ end }}
+ {{ with .Next }}
+ <li><a href="{{ .URL }}">Next</a></li>
+ {{ end }}
+ {{ with .Last }}
+ <li><a href="{{ .URL }}">Last</a></li>
+ {{ end }}
+ </ul>
+{{ end }}
+```