{% if section.background %}
{% endif %}
{% for line in section.images %}
{% for image in line %}
{% if image.type == "video" %} {% set caption = image.text %} {% set video = Video(image) %} {% set format = settings.ffmpeg.extension %} {{ video.copy() }} {% if caption %}
{{ caption }}
{% endif %} {% else %} {% set caption = image.text %} {% set image = Image(image) %} {{ image.copy() }} {% if caption %}
{{ caption }}
{% endif %}
{% endif %}
{% if not loop.last %}
{% endif %} {% endfor %}
{% endfor %}
{% if section.background %}
{% endif %}