{% endif %}
{% if section.image.type == "video" %}
{% set video = Video(section.image) %}
{% set format = settings.ffmpeg.extension %}
{% set caption = section.text %}
{{ video.copy() }}
{% if caption %}
{{ caption }}
{% endif %}
{% else %}
{% set image = Image(section.image) %}
{% set caption = section.text %}
{{ image.copy() }}