{% if articles|length > 0 %}
{% for article in articles %}
<div class="news-latest__item">
<div class="news-latest__image">
{% if article.images|length > 0 %}
<img src="{{ article.images[0].path|imagine_filter(filter|default('sylius_large')) }}" alt="{{ article.images[0].path }}">
{% endif %}
{% if article.categories|length > 0 %}
<div class="news-latest__category">{{ article.categories[0].title }}</div>
{% endif %}
</div>
<div class="news-latest__content">
<div class="news-latest__date">{{ article.createdAt|date }}</div>
<div class="news-latest__title">{{ article.title }}</div>
<div class="news-latest__text">{{ article.metaDescription }}</div>
<a href="{{ path('odiseo_sylius_blog_plugin_shop_article_show', {'slug' : article.slug}) }}" class="button button--outline-red button--medium">{{ 'sylius.home.details'|trans }}</a>
</div>
</div>
{% endfor %}
{% endif %}