{% extends 'admin/base.html.twig' %} {% block title %}Articles de blog{% endblock %} {% block breadcrumb %}Blog Articles{% endblock %} {% block description %}Gérez les articles de votre blog{% endblock %} {% block stylesheets %} {% endblock %} {% block body %} {% for label, messages in app.flashes %} {% endfor %}

Articles de blog

Créez et gérez vos articles de blog

{% if posts|length > 0 %} {{ posts|length }} {% endif %} Nouvel article
{% if posts|length > 0 %}
{% for post in posts %} {% endfor %}
Image Titre Catégorie Introduction Date Actions
{% if post.image %} {{ post.title }} {% else %}
{% endif %}
{{ post.title }} {% if post.category %} {{ post.category.name }} {% else %} Sans catégorie {% endif %}
{{ post.introduction|length > 80 ? post.introduction|slice(0, 80) ~ '...' : post.introduction }}
{{ post.creationDate|date('d/m/Y') }} Modifier
{% else %}

Aucun article publié

Commencez à créer du contenu pour votre blog

Créer mon premier article
{% endif %}
{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}