Hi,
New to this, but work on my Hugo site and blog is progressing.
What is the best strategy for creating taxonomy single and list pages?
On Pakstech Blog the strategy is to create a taxonomy
(single) and terms
(list) page per taxonomy, for example:
layouts/categories/taxonomy.html
layouts/categories/terms.html
In the excellent book Build Websites with Hugo by Brian P. Hogan, he uses the following strategy:
-
layouts/_default/categories.html
(list of posts for a given category) -
layouts/_default/tags.html
(list of posts for a given tag) -
layouts/_default/terms.html
(list of categories or tags)
Are there other strategies? I don’t think it really matters for my site/blog, because I can change it afterwards, but which one is the best strategy? Not only for myself, but also if I want to make my theme publicly available.
Thanks.