Back to Hugo

Page

docs/content/en/methods/taxonomy/Page.md

0.161.1281 B
Original Source

This TAXONOMY method returns nil if the taxonomy has no terms, so you must code defensively:

go-html-template
{{ with .Site.Taxonomies.tags.Page }}
  <a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
{{ end }}

This is rendered to:

html
<a href="/tags/">Tags</a>