Hi! I’d like to have multiple sections for a single group of pages. Essentially, I’m attempting to output the same group of pages in different formats (each using a different section template). Is this currently possible? Maybe there’s a simpler way to achieve this?
Folder structure something like:
/section1/_index.md
/section1/page1.md
/section1/page2.md
/section1/page3.md
I’d like the option to add something like this: /section1/_anotherformat.md
With access to the same {{ section }} variable and data. This would allow me to use a different template and output my data in my desired format.
Use case: think of data being output in plaintext, also json, also some other formats. Resulting URLs would be:
/section/
/section/page1
/section/page2
/section/page3
/section/anotherformat
Thanks!