Hi all, new to Grav and loving it so far. According to the documentation you can access modular children of the current page as a collection with ‘@self.modular’. Is there a way to access modular children of another page in a similar way? eg. ‘@page.modular’: ‘/fruit’? I’m aware of grav-plugin-page-inject, but it seems like we should be able to do it via page collections too? Cheers!
There’s no built-in way now AFAIK, you can do '@page': '/fruit'
and then {% set collection = page.collection().modular() %}
in the Twig.
Ah excellent, that’ll do the trick. Thanks a lot.