I have a personal website which I would like to extend by a publications section (e.g., my-site.com/publications). My goal is that Hugo builds /publications.html using all of my publication content files without building a dedicated page for each publication (i.e., /publications/pub1.html should not be built but the content of pub1 should be in the section page).
My question now is: Is this possible? I tried around for a while and could not find any leads in the documentation or the forum. Any pointers to the right search query or solutions are appreciated!
The project structure would like this
root
├── archetypes
│ ├── publications.md
│ └── <other>
├── content
│ ├── publications
│ ├── publication-1.md
│ └── publication-2.md
│ └── <other_content>
├── layouts
│ ├── publications
│ ├── section.html
│ └── single.html # do I need this?
│ └── <other_layouts>
└── <other>