{% if page.images or page.image %} {% if page.image %} {% assign non_featured_images = page.images | join: "," %} {% assign image_collection = page.image | append: "," | append: non_featured_images | split: "," %} {% else %} {% assign image_collection = page.images %} {% endif %} {% if page.image_description %} {% assign image_text = page.image_description %} {% else %} {% assign image_text = page.title %} {% endif %} {% if image_collection.size > 1 %}
{% for image in image_collection %} {% assign image_counter = " #" | append: forloop.index %} {% assign image_display_text = image_text | append: image_counter %} {% if image contains site.images_path %} {% assign image_location = image %} {% else %} {% assign image_location = site.images_path | append: image %} {% endif %} {% if image_location contains '-raw.' %} {{ image_display_text }} {% else %} {% assign picture_elements = image_location | split: '.' %} {{ image_display_text }} {% endif %} {% endfor %}
{{ image_collection.size }} images
{% else %} {% if image_collection.first contains site.images_path %} {% assign image_location = image_collection.first %} {% else %} {% assign image_location = site.images_path | append: image_collection.first %} {% endif %} {% if image_location contains '-raw.' %} {{ image_text }} {% else %} {% assign picture_elements = image_location | split: '.' %} {{ image_text }} {% endif %} {% endif %} {% endif %}