Skip to content

Instantly share code, notes, and snippets.

@jmooring
Last active August 3, 2023 22:11
Show Gist options
  • Save jmooring/50a7482715eac222e230d1e64dd9a89b to your computer and use it in GitHub Desktop.
Save jmooring/50a7482715eac222e230d1e64dd9a89b to your computer and use it in GitHub Desktop.
Hugo - Display taxonomy terms assigned to a page
{{ with .GetTerms "tags" }}
<ul>
{{ range . }}
<li><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></li>
{{ end }}
</ul>
{{ end }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment