Is there a way to get content from a sub folder NOT using the modular functionality? So, for example:
This grabs and loops all images within the folder:
{% for image in page.media.images %}
{{ image.html }}
{% endfor %}
But I want to grab all images within the current pages sub folder called 'gallery' - e.g:
{% for image in page/gallery/.media.images %}
{{ image.html }}
{% endfor %}
But also do this for content as well, so if a page had a sub folder called 'about' then something along the lines of:
{% get from page/about %}
{{ content }}
{% endfor %}
Is this at all possible?
Thanks,