How would I build the typical monthly archive pages in Hugo? See http://kottke.org/everfresh for an example. Basically grouping all posts by content type and their published month + year, then generating a list page for them.
I can’t find a way to do this in the docs but it is a pretty basic feature. Maybe the real question is, what is the plan regarding custom list page templates?
Sorry in advance if I just missed the relevant docs. :\
Hugo has support for this in the form of taxonomies. Taxonomies allow you to create any type of grouping you want to. While it does require a single extra field in the front matter, it is certainly simpler than any other solution.
If I recall I got this technique looking at @spf13’s site repo (thanks!), but I’m doing it via a section template, showing posts grouped by years on my blog top instead of just a list of posts.
It’s not exactly what you want perhaps, but this was good enough for me. I did not see a need to have it in the sidebar a la Wordpress or whatever. YMMV. Perhaps it’ll spark an idea for you.