{% extends 'base.html.twig' %} {% block title %}Association TAM : Équipe{% 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 %} {{ rubricInfo.getGalleryImage.alt }} {% endif %}
{{ rubricInfo.text|quill_html|raw }}
{% endif %}
{% for role in roles %}

{{ role.name }}

{% for member in role.members %} {% set tag = role.name == 'president' ? 'a' : 'div' %} <{{ tag }} class="team__card" {% if tag == 'a' %} href="{{ path('app_eulogy') }}" {% endif %} > {{ [member.firstname, member.lastname]|join }}

{{ member.firstname }} {{ member.lastname }}

{{ member.presentation|raw }}

{% endfor %}
{% endfor %}
{% for teamSection in teamSections %}
{% if teamSection.title is not empty %}

{{ teamSection.title }}

{% endif %}
{{ teamSection.text|quill_html|raw }}
{% if teamSection.aside is not empty %} {% endif %}
{% endfor %}
{% include "partials/_right_banner.html.twig" %}
{% endblock %}