I am rewriting my blog from hugo to zola. Is it possible to make this happen:
I have a content
directory where are all the english blog posts are housed. There is a folder named bengali
inside content, which holds all my bengali language posts.
My site has both en
(English) and bn
(Bengali) languages enabled.
Currently my bengali posts get urls like this example.com/bn/bengali/post1-in-bengali/
and english posts get example.com/post1-in-english
Is it possible to give my Bengali posts inside bengali
folder urls like example.com/bn/post1-in-bengali
without having to specify post path on each post or without putting all Bengali posts inside content
directory with filenames like post.bn.md
Thank you