<figure>
    <a class="{{ class }}" {{ data }} href="{{ url }}">
        {% if type == 'video' %}
            {{ function ('getSvgCode', "svg-icon-play") }}
        {% endif %}
        {% if type == 'video' and image is empty %}
            {% set image = function("get_youtube_img_src",media.id_video_youtube) %}
            <img src="{{ image }}" />
        {% else %}
            {{ function('wp_get_attachment_image', image.ID, size, false) }}
        {% endif %}
    </a>
    {% if credit is not empty %}
        <figcaption>{{ __('Photo credits:', 'lubie') }} {{ credit }}</figcaption>
        {% endif %}
</figure>