Returns a hash of images attached to the page.

Usage

{{ page.images }}

Example 1

This page has {{ page.images.length }} images.

Example 2

{% if page.has_images? %}
  Here are the images in reverse order:<br/>
  {% for img in page.images_reverse %}
    <img src="{{ img.src }}"/>
  {% endfor %}
{% endif %}