Is it possible to put multiple index pages in the same dir?
I prefer "flat" urls. For example, https://domain.name/article-slug
I prefer to provide structure through index views.
So, https://domain.name/blog (in sidebar) would list articles which have "blog" in their <tag> list,
while https://domain.name/projects would list articles which have "project" in their <tag> list.
From the above description, I would need to put each content page directly under site/ dir.
Also, I would need to have several index pages under site/ dir.
site
|---content-page1/{index.html, .leaf}
|---content-page2.html
|---index.html
|---index.2.html
I tried the above structure, but index.2.html got converted into build/index.2/index.html,
which loads a blank page in the browser.