{% set primaryMedia = null %} {% set attachments = [] %} {% set primaryResource = null %} {% set thematic = item.getThematic is defined ? item.getThematic() : null %} {% set publishedAt = item.publishedAt ?? item.createdAt ?? null %} {% for newsContent in item.cbaNewsContents %} {% if primaryMedia is null and newsContent.media.principal %} {% set primaryMedia = newsContent.media %} {% endif %} {% if not newsContent.media.principal %} {% set attachments = attachments|merge([newsContent.media]) %} {% endif %} {% endfor %} {% if primaryMedia and primaryMedia.type.id not in [10, 11] and primaryMedia.file %} {% set primaryResource = primaryMedia %} {% endif %}
{% if primaryMedia %} {% if primaryMedia.type.id == 10 %}
{% elseif primaryMedia.type.id == 11 %} {% elseif primaryMedia.image %} {{ item.title }} {% else %}
{% endif %} {% else %}
{% endif %}
{% if thematic %} {{ thematic.name }} {% endif %} {% if publishedAt %} {{ publishedAt|date('d/m/Y') }} {% endif %}

{{ item.title }}

{{ item.description|striptags|u.truncate(180, '…') }}

{% if primaryResource %} {% endif %} {% if attachments|length > 0 %}
Ressources associées
{% for media in attachments %} {{ media.name }} {% endfor %}
{% endif %}