{% for insight in insights %}
{% set thumbnail = asset('build/images/es_grey_400x400px.png') %}
{% if insight.imageCaption is defined and insight.imageCaption is not empty %}
{% set thumbnail = sonata_path(insight.imageCaption, 'banner' ) %}
{% endif %}
<a href="{{ path('insight_detail', { 'insightName': insight.url, 'categoryName': insight.category.slug }) }}">
<div class="swiper-slide insight" style="background-image: url('{{ thumbnail }}')">
<div class="insight-tittle">
<h4>{{ insight.title }}</h4>
</div>
<div class="insight-data">
<div class="insight-categoty">
{% set visible_tags = ['Sports', 'News', 'Culture', 'Distribution', 'Contribution'] %}
{% for tag in insight.tags %}
{% if tag.name in visible_tags %}
<span>{{ tag.name }}</span>
{% endif %}
{% endfor %}
</div>
<div class="insight-tag-date">
<div class="insight-tag">
Category: <span><a href="{{ path('insight_detail', { 'insightName': insight.url, 'categoryName': insight.category.slug }) }}">{{ insight.category.name }}</a></span>
</div>
<div class="insight-date">
Published: <span>{{ insight.date|time_diff_or_date }}</span>
</div>
</div>
</div>
</div>
</a>
{% endfor %}