Spent my evening working on my blog. An objective I've had in mind is adding some polish to my "series" ( groups of posts about a specific project or topic ).
#hugo has builtin support for this via its Taxonomies feature so I had a strong foundation. The real trick was understanding Hugo's lookup priorities, I suppose.
The short version is that Taxonomies contain terms. If you want to modify how the landing page for your series looks ( e.g. `/series/blogging-with-quartz/` ), the template you want is `layouts/_default/term.html`.
To compose content for your term pages, create `content/series/blogging-with-quartz/_index.md`. Make sure to give it frontmatter, this is a "Page" just like any other Markdown file in the `content/` directory.
For more details, check out the shiny new series page!