{% if __SELF__.carousel.images|length > 1 %}
    {% for i, image in __SELF__.carousel.images %}
  1. {% endfor %}
{% endif %} {% if __SELF__.carousel.images|length > 0 %}
{% for i, image in __SELF__.carousel.images %}
{{ image.title }} {# Show caption only if there is image title or description #} {% if image.title or image.description %}
{% if image.title %}

{{ image.title }}

{% endif %} {% if image.description %}

{{ image.description }}

{% endif %}
{% endif %}
{% endfor %}
{% endif %} {% if __SELF__.carousel.images|length > 1 %} Previous Next {% endif %}