{% extends 'base.html.twig' %} {% block title %}Au Fil De La Béhine{% endblock %} {% block menu %}Édition d'un article{% endblock %} {% block stylesheets %} {% endblock %} {% block body %}
{% 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 }}

{% 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 %} {% endif %} {% endif %} {% endfor %} {% endfor %}
Ajouter une section

{% endblock %} {% block javascripts %} {% endblock %}