{% extends "base.twig" %} {% block content %}

{{ post.title | bilingual(current_language) }}

{% if images %}
{% for img in images %}
{{ img.alt }} {% if img.title %}
{{ img.title }}
{% endif %}
{% endfor %}
{% endif %}
{% if liens %} {% endif %}
{% if current_language == 'en' and body_en %} {{ body_en|raw }} {% else %} {{ post.content }} {% endif %} {% if axes_groups %}
{% for group in axes_groups %}

{{ group.label }}

{% endfor %}
{% endif %} {% if partenaires_internationaux or partenaires_nationaux %}

{{ current_language == 'en' ? 'Partner institutions' : 'Institutions partenaires' }}

{% if partenaires_internationaux %}

{{ current_language == 'en' ? 'International partners' : 'Partenaires internationaux' }}

{% endif %} {% if partenaires_nationaux %}

{{ current_language == 'en' ? 'National partners' : 'Partenaires nationaux' }}

{% endif %}
{% endif %} {% if bibliotheques %}

{{ current_language == 'en' ? 'Libraries' : 'Bibliothèques' }}

{{ bibliotheques|raw }}
{% endif %}
{% endblock %}