{% extends 'base.html.twig' %} {% block title %}Au Fil De La Béhine{% endblock %} {% block menu %}Blog{% endblock %} {% block stylesheets %} {% endblock %} {% block body %} {% if is_granted('ROLE_ADMIN') %}
Modifier l'article
Ajouter une section

{% endif %}
{% set p_count = post.paragraphs|length %} {% for i in 1..p_count %} {% for paragraph in post.paragraphs %} {% if paragraph.place == i %} {% if paragraph.format is null %}

{{ paragraph.content | nl2br }}

{% if is_granted('ROLE_ADMIN') %}
{% endif %} {% else %} {% if paragraph.format.id == 1 %}

{{ paragraph.subtitle }}

{{ paragraph.content | nl2br }}

{% elseif paragraph.format.id == 2 %}

{{ paragraph.content | nl2br }}

{% elseif paragraph.format.id == 3 %}
{{ paragraph.content | nl2br }}
{% elseif paragraph.format.id == 4 %} {% for picture in paragraph.illustrations %} {% endfor %} {{ paragraph.subtitle | nl2br }} {% endif %} {% if is_granted('ROLE_ADMIN') %}
{% endif %} {% endif %} {% endif %} {% endfor %} {% endfor %}
{% endblock %} {% block javascripts %} {% endblock %}