{% extends 'domain/backend/layouts/base.html.twig' %} {% block title %}Post index{% endblock %} {% block styleheet %} {% endblock %} {% block javascript %} {% endblock %} {% block body %}

Liste des posts

Nouveau post
{% for key, post in posts %} {% endfor %}
# Titre Contenu Image couverture Tags Date publication Afficher sur
la page d'accueil
Actions
{{ key + 1 }} {{ post.titre }} {{ post.contenu }} {% for tag in post.tags %} {{ tag.libelle }} {% endfor %} {{ post.datePublication ? post.datePublication|date('Y-m-d') : '' }} {% if post.showHome %} OUI {% else %} NON {% endif %}
{{ include('domain/backend/post/_delete_form.html.twig') }}
{% endblock %}