Is there any way to get Grav to work with multiple pages being stored not in separate subfolders, but as separate .md files within one folder, particularly for a blog-style site?
I am trying to minimise the number of subfolders on my hosting account. One reason is that my webhost limits the total number of i-nodes I can use, and having each blog post in its own subfolder doubles the usage for my Grav site. The other is performance – reaching several hundred blog posts means having several hundred subfolders in one location. This leads to delays and issues when, for example, performing a directory listing in FTP and particularly for backups (which I would like to have performed automatically on a regular basis, and this takes considerably longer with excessive amounts of subfolders).
I had in mind turning
01.blog\
post-1\
item.md
post-2\
item.md
post-3\
item.md
into something more like
01.blog\
20160101-post-1.item.md
20160108-post-2.item.md
20160209-post-3.item.md
---