I am wondering why after running 'build' my nunjucks pages (other than index.njk) are getting output into separate folders? For example, if I have a file 'src/products.njk', it will be output to 'dist/products/index.html'.
For example
src
|-- index.njk
|-- products.njk
dist
|-- index.html
|-- products
|-- index.html
If there is an advantage to this type of renaming could you explain it to me?
Can this be overriden so that the file remains in the same output folder as 'dist/products.html'? Or is that an unwise thing to do?