{% extends 'base.html.twig' %} {% block title %}{{post.title}}{% endblock %} {% block meta_desc %} {{post.content[:150]|striptags|raw }} {% endblock %} {% block body %}

{{post.subtitle}}

{{post.content|raw}}
{% if post.postLinks|length >= 1 %} {% for link in post.postLinks %} {% if link.isTextLink == true %} {{link.caption}} {% endif %} {% endfor %} {% endif %}

{% if post.postImages|length >= 1 %}
{% for image in post.postImages %} {{image.caption}} {% endfor %}
{% else %} Aucune image associée à cet article... {% endif %}

{% if post.postFiles|length > 0 %} {% for file in post.postFiles %} {{file.caption}} {% endfor %} {% else %} Aucun document associé à cet article {% endif %}
{% endblock %}