{% if instagram|length > 0 %}
<section class="instagram">
<div class="instagram__title">
<h2 class="text text--divider text--divider--center text--h1">{{ '#jihoceskejerky'|trans }}</h2>
</div>
<div class="instagram__content">
<div class="container">
<div class="instagram__row">
{% for tag in instagram %}
{% if tag['link'] is not empty %}
<a href="{{ tag['link']|default }}" class="instagram__item" target="_blank"
style="background-image: url({{ tag['type']=='VIDEO'?tag['thumb']:tag['url'] }})">
<img src="{{ tag['type']=='VIDEO'?tag['thumb']:tag['url'] }}" alt="{{ tag['type'] }}">
<p class="instagram__text">{{ tag['text']|default }}</p>
</a>
{% endif %}
{% endfor %}
</div>
</div>
</div>
</section>
{% endif %}