Taxonomies are a way to categorize content with labels. Hugo enables the tags and categories taxonomies by default. This change adds a new /<taxonomy/ page with a list of all labels for that taxonomy. For example, adding tags: ['writing', 'mystery'] to the front matter of a post and then visiting example.com/tags/ will show the writing and mystery tags.
Adds taxonomy support as described at https://gohugo.io/content-management/taxonomies/.
Taxonomies are a way to categorize content with labels. Hugo enables the
tags
andcategories
taxonomies by default. This change adds a new/<taxonomy/
page with a list of all labels for that taxonomy. For example, addingtags: ['writing', 'mystery']
to the front matter of a post and then visitingexample.com/tags/
will show thewriting
andmystery
tags.