{% extends 'domain/frontend/layouts/base.html.twig' %} {% block title %}{{ post.titre }}{% endblock %} {% block main_title %}{{ post.titre }}{% endblock %} {% block sub_title %}{{ post.titre }}{% endblock %} {% block style %} {% form_theme form 'form_div_layout.html.twig' %} {% endblock %} {% block body %}
    {% for tag in post.tags %}
  • icon-img {{ tag.libelle }}
  • {% endfor %}
  • icon-img 0 Commentaires

{{ post.titre }}

{{ post.contenu }}

{{ post.comments.count }} Commentaire(s)


{% for comment in post.comments %}
{% set initials = comment.fullName|split(' ')|map(word => word|slice(0, 1))|join('') %} image
{{ comment.fullName }}
{{ comment.createdAt|date("d-m-Y") }}

{{ comment.message }}

{% endfor %}

Laissez un commentaire

{{ form_start(form) }}
{{ form_row(form.fullName) }}
{{ form_row(form.email) }}
{{ form_row(form.message) }}
{{ form_end(form) }}
Categories
Posts récents
Tags
{% for tag in tags %} {{ tag.libelle }} {% endfor %}
{% endblock %}