mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-14 00:29:31 -04:00
523 B
523 B
title | description | categories | keywords | params | |||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Page | Returns the taxonomy page or nil if the taxonomy has no terms. |
|
{{< new-in 0.125.0 />}}
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>