783 B
783 B
title, description, categories, keywords, params
| title | description | categories | keywords | params | |||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| RegularPages | Returns a collection of all regular pages. |
|
The RegularPages method on a Site object returns a collection of all regular pages, in the default sort order.
{{ range .Site.RegularPages }}
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
{{ end }}
{{% glossary-term "default sort order" %}}
To change the sort order, use any of the Pages sorting methods. For example:
{{ range .Site.RegularPages.ByTitle }}
<h2><a href="{{ .RelPermalink }}">{{ .Title }}</a></h2>
{{ end }}