In the post http://getgrav.org/forum#!/general:image-logo a very nice way of using the grav page object is shown.
Assuming that I have a folder pages/images, that holds all my images, I wonder if it is possible to iterate through an array of all that images. So this would be an easy way to generate a gallery.
I tried something like this:
{% for oPage in pages.find('/images').media['*.jpg'] %}
{{ oPage.url }}
{% endfor %}
but it didn't work.
Where can I find a detailed documentation of grav objects?