<div class="row">
    {% for media in blockData %}
        {% set type =  media.type_media %}
        {% set credit = media.credit_text %}
        {% set data = 'data-fancybox="gallery"' %}
        {% set image = media.image_play_button %}

        {% if media.id_video_youtube is not empty %}
            {% set url = "https://www.youtube.com/watch?v=" ~ media.id_video_youtube ~ "?autoplay=1&controls=0&showinfo=0&rel=0" %}
        {% else %}
            {% set url =  image.url %}
        {% endif %}
    <div class="col col-sm-12 col-xs-24">
        {% embed "image.twig" %}{% endembed %}
    </div>
{% endfor %}
</div>



