So, I’m having a bit of trouble trying to understand page bundles (things have changed a lot since the last time I made a website with Hugo). I want to have a list of posts that shows the cover image of that post (whose filename can change) and its title.
So, what I understand is that you can organize your posts this way:
|── posts
| ├── post without image.md
| ├── post with image
| | └── index.md
| | └── theimage.jpg
But now I don’t know how to display that image on the list template (nor in the single template). I’m a bit lost. Can anyone help me?