{# templates/post/show.html.twig #} {% extends 'base.html.twig' %} {% block title %}Post - {{ post.title }}{% endblock %} {% block stylesheets %} {% endblock %} {% block body %}

{{ post.profil.name }}

{{ post.title }}

{{ post.text }}

Up Votes: {{ post.upVote }} / Down Votes: {{ post.downVote }}

Tags:

Commentaires:

{% for commentary in post.commentaries %}
{{ commentary.profil.name }}
{{ commentary.text }}
{% endfor %}
{% endblock %}