{% extends 'base.html.twig' %}
{% block title %}Association TAM : L'association{% endblock %}
{% block body %}
{% include "partials/_left_banner.html.twig" %}
{% if rubricInfo.title is not empty or rubricInfo.getGalleryImage.path is defined or rubricInfo.text is empty %}
{{ rubricInfo.title }}
{% if rubricInfo.getGalleryImage is not empty %}
{% endif %}
{{ rubricInfo.text|quill_html|raw }}
{% endif %}
{% for associationSection in associationSections %}
{% if associationSection.title is not empty %}
{{ associationSection.title }}
{% endif %}
{{ associationSection.text|quill_html|raw }}
{% if associationSection.aside is not empty %}
{% endif %}
{% endfor %}
{% include "partials/_right_banner.html.twig" %}
{% endblock %}