{% for article in articles %}
<div class="col-lg-4 col-md-6">
<a style="margin-bottom: 20px!important;" href="{{ path('articles.show', {'id': article.id, 'slug': article.slug}) }}" class="best-selling-tour__item">
<div class="best-selling-tour__item__thumb">
{% if article.filename %}
<img src="{{ vich_uploader_asset(article, 'imageFile') | imagine_filter('thumbnail_card') }}" alt="{{ article.name }}">
{% else %}
<img src="{{ asset('assetics/internes/images/empty.jpg') }}" alt="{{ article.name }}">
{% endif %}
<div class="best-selling-tour__item__info">
<div class="best-selling-tour__item__tittle">
<p style="font-weight: bold;color: #fff!important;font-size: 18px!important; text-shadow: 0 0 3px #000;">{{ article.categories.name }}</p>
</div>
</div>
</div>
</a>
<h3 class="trending-tour-item__name" style="font-size: 12px!important;">
<a style="color: #034b9d!important;text-decoration: underline!important;" href="{{ path('articles.show', {'id': article.id, 'slug': article.slug}) }}">{{ article.name|u.truncate(33, '...') }}</a>
</h3>
</div>
{% endfor %}