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