{% extends 'base.html.twig' %} {% if post.dream %} {% set nightmare = 'nightmare' %} {% endif %} {% block stylesheets %} {% endblock %} {% block title %}{{ post.title }}{% endblock %} {% block body %}
{{ post.profil.name }} {# - {{ post.dateCreated }} #} - {{ post.createdAt|date('l, F j, Y') }}

{{ post.title }}

{{ post.text }}


Comments

{% if is_granted('ROLE_USER') %}
{{ form(commentForm) }}
{% endif %}
{% for comment in post.commentaries %} {% include 'comment/comment.html.twig' with { 'comment' : comment, 'dream' : post.dream } %} {% endfor %}
{% endblock %}