I have the following content structure, i would like to use different list templates for site.com/stories and site.com/stories/18273-story-1/. Any suggestions will be appreciated.
content/
stories/ <- template A
18273-story-1/ <- template B
_index.md
1.md
2.md
...
10.md
73462-story-2/
1.md
2.md
...
20.md
I think the currently simplest solution is to set either type (recommended) or layout with cascade; you should be able to match the levels with a Glob:
[[cascade]]
type = "b-type"
[cascade._target]
path = "/stories/*/**"
Note that cascade can be set both in front matter and in site config.