{% extends '@kohinos/common/layout.html.twig' %} {% block content %}
{% include '@kohinos/block/breadcrumb.html.twig' with {'label' : 'Actualités'} %}

{{ 'Actualités'|trans }}

{% for new in news %}
{% if new.media %} {% set pathMedia = mediaurl(new.media, 'reference') %} {% if pathMedia ends with '.jpg' or pathMedia ends with '.jpeg' or pathMedia ends with '.png' or pathMedia ends with '.bmp' or pathMedia ends with '.gif' %} {% thumbnail new.media, 'small' %}
{% else %} {{ 'Télécharger'|trans }} {% endif %} {% endif %} {{new.content|raw}}
{% endfor %}
{% endblock %}