{% extends 'admin/base.html.twig' %} {% block title %}Page Blog{% endblock %} {% block description %}Représente la page Blog de votre site{% endblock %} {% block stylesheets %} {% endblock %} {% block body %} {% if success is defined and success == true %}
Parfait ! Votre page blog à bien été mise à jour.
{% endif %}

Mes articles

{% if posts|length > 0 %} {% for post in posts %} {% endfor %} {% else %} {% endif %}
Titre Introduction Date de création Actions
{% if post.image is defined and post.image is not null %} {{ post.title }} {% endif %} {{ post.title }} {{ post.introduction }} {{ post.creationDate|date('d/m/Y') }}
Aucun article
{% endblock %} {% block javascripts %} {% endblock %}