Page
Returns the taxonomy page or nil if the taxonomy has no terms.
Syntax
TAXONOMY.Page
Returns
page.Page
This TAXONOMY method returns nil if the taxonomy has no terms, so you must code defensively:
{{ with .Site.Taxonomies.tags.Page }}
<a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
{{ end }}This is rendered to:
<a href="/tags/">Tags</a>Last updated:
February 14, 2026
:
Merge commit '8f3c066d23f431fb2c53d97ea489e4c28b42bd82' (3e2f98235)
Improve this page