Hello and thank you for grav as well as for this forum.
I am about to build my first theme. So far the excellent doc could help me a lot. However, now I am encountering the first problem I cannot solve on my own.
I try to make a one page website with multiple modular pages. One of these modules should be some kind of feature list (something like that: http://blackrockdigital.github.io/startbootstrap-heroic-features/ )
I think it might be a good idea when each of these features is a (modular) page on its own - this would make it easy to add, remove and edit features.
To achieve this one would need a modular page inside of the main modular page - you could call that "recursive modular page".
To do that I did something like that:
<page>user/pages$ tree
.
└── 01.home
├── _features
│ ├── modular.md
│ ├── _foo
│ │ └── foo.md
│ └── _bar
│ == └── bar.md
├── _home
│ ├── background.jpg
│ └── home.md
└── modular.md
However, the sections "foo" and "bar" don't seem to be rendered.
I will be glad to provide any additional information if needed! Thank you!