I am just getting started with Hugo and trying to port a current site to it, and facing some issues:
I have a post type called “downloads”, which contains release notes for a software component.
On a downloads page I want to list the last two stable and last five unstable releases, which works fine using taxonomies in the downloads.html template (in layouts/section/
).
So far, so good. Now I wanted to include a link at the bottom to show all releases and I noticed that this is impossible, as I can’t have a layout without a post type it seems.
I even tried putting all downloads content items in a subfolder called archive and making a layout for archive, but this does not work either.
Is there a workaround I can use or is what I am trying to do just too complex for Hugo?