mirror of
https://github.com/gohugoio/hugo.git
synced 2026-09-03 12:12:37 +00:00
467 B
467 B
title, description, categories, keywords, action
| title | description | categories | keywords | action | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Pages | Returns the pages in the current pager. |
|
{{ $pages := where site.RegularPages "Type" "posts" }}
{{ $paginator := .Paginate $pages }}
{{ range $paginator.Pages }}
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
{{ end }}
{{ template "_internal/pagination.html" . }}