I’m trying to list/loop through all tags used in an entire hugo site. I have taken some time, looking around I got this
{{ range .Site.Taxonomies.tags }}
That doesn’t get me very far though; I’m still outputing some spaghetti mess. It occurs to me that I’m missing something, that could probably be identified quickly. Any links (perhaps even to older questions here) or ideas?
Very nice, this worked for me also! Thanks!
BTW, changing the reference to .tags > to .categories also listed the categories, so I guess the approach would work for any term! Thanks!