Hi everyone, I currently have a content structure like this:
content/
folder-a/
_index.md
subfolder-a/
_index.md
post-1.md
post-2.md
post-3.md
subfolder-b/
_index.md
post-1.md
post-2.md
post-3.md
When visiting the URL mysite.com/folder-a/ I would like to see all the post inside both subfolder-a and subfolder-b listed excluding the content in _index.md
What would the range loop look like the above, would I have to rely on tags and categories and do a .Site.Pages where to get the list of pages Iām looking for?