{% if settings.settings.light_mode %} {% set pathstatic = ".." %} {% else %} {% set pathstatic = "." %} {% endif %} {% if section.image.type == "video" %} {% set video = Video.get(link + "/" + pathstatic, section.image) %} {% set format = settings.ffmpeg.extension %} {% set vid = video.reencode((1280, 720)) %} {% else %} {% set image = Image.get(link + "/" + pathstatic, section.image) %} {% endif %} {% set caption = section.text %} {% if video %}
{% else %}
{% if caption %}{{ caption }}{% endif %}
{% endif %}