Page
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>