{% if articles|length > 0 %}
<div class="categorie-looks">
<div class="categorie-looks-ctn">
<h2>
{# {{ title }} #}
{% if app.request.locale == 'en_US' and titleen is not empty %}
{{ titleen }}
{% else %}
{{ title }}
{% endif %}
</h2>
<div class="carouseel">
{% for article in articles %}
<div class="look">
{% if article.imagesByType('image_article_main')|length > 0 %}
<a href="{{ path('app_leguide_article', {'slugCategory': article.articleCategory.slug, 'slug': article.slug, 'articleId': article.id}) }}">
<img class="ui image" src="{{ article.imagesByType('image_article_main').first.path|imagine_filter('app_carrousel_looks') }}" />
</a>
{% endif %}
<a href="{{ path('app_leguide_article', {'slugCategory': article.articleCategory.slug, 'slug': article.slug, 'articleId': article.id}) }}" class="top look-article-title">
<h3 class="categorie-looks-description">
{% if article.titleVignette is not empty %}
{{ article.titleVignette }}
{% else %}
{{ article.title }}
{% endif %}
</h3>
</a>
</div>
{% endfor %}
</div>
</div>
</div>
{% endif %}