Returns a hash of images attached to the page.
{{ page.images }}
This page has {{ page.images.length }} images.
{% if page.has_images? %}
Here are the images in reverse order:<br/>
{% for img in page.images_reverse %}
<img src="{{ img.src }}"/>
{% endfor %}
{% endif %}