I’m trying to update my routes, but it doesn’t seem to be working properly.
My homepage uses the index template and I want it to display ALL posts. It previously had a filter applied to exclude posts, but I have removed it. I now use this:
collections:
/:
permalink: /{year}/{month}/{day}/{slug}/
template: index
The file loads correctly, but posts are still being ignored. The ignored posts are appearing in other collections, so I know they are working.
FYI, there is nothing complicated in my Capser theme index file. It’s literally as basic as it comes.
Not sure what I’m missing here. My understanding is that all posts should be displayed at the homepage level because there are no filters applied. What am I missing here?