I have created a “collections_dir” setting in config file and I have created a ‘collection’ folder which contains the collections. After that my posts from the site disappeared. I expected that if the “_posts” folder in the root folder, I should be able to see post, even if the collections are in a sub folder.
Here is my setup:
├─ collections
│ └─ _poetry
├─ _posts
└─ _config.yml
I can see the posts only when I transfer the “_post” folder in the specefic collection sub folder. Otherwise, I cannot see the posts on my site.
Code Sample
collections_dir: collection
collections:
poetry:
output: true
permalink: /:collection/:title/
I have made this same post in Githib too.