{% extends '@SyliusShop/layout.html.twig' %} {% block title %} Actualités - {{ parent() }} {% endblock %} {% block content %}

{{ pageTitle|default('Actualités') }}

{% for post in articles %}
{% set img = post.image is defined and post.image ? post.image : asset('build/app/shop/images/01.jpg', 'app.shop') %} Image
{% if post.category is defined and post.category.name is defined %} {{ post.category.name }} {% endif %} {% if post.created_at is defined %} {{ post.created_at|date_fr }} {% endif %}

{{ post.title }}

{% if post.excerpt is defined and post.excerpt %}
{{ post.excerpt|html_unescape }}
{% endif %}
{% endfor %}
{% set routeName = (archive is defined and archive) ? 'article_archive' : 'article_index' %}
{% if archive is defined and archive %} Retour aux actualités {% else %} Voir les archives {% endif %}
{% endblock %}