{% extends 'frontNEW.html.twig' %} {% block title %} {{ 'page.new.index.title' |trans }} {% endblock %} {% block stytesheets %} {{ parent() }} {% endblock %} {% block body %}
{% if app.request.attributes.get('_route') == "news_front_category" %}

{{ category.name }}

{% else %}

{{ 'page.new.index.title2' |trans }}

{% endif %}
{% if news != null %}
{% for new in news %}
{% if new.gallerie|length <1 %} news {% else %} {% for gallery in new.gallerie %} {% if loop.index == 1 %} news {% endif %} {% endfor %} {% endif %}

{{ new.title }}

{{ new.description[:100] }}

{% endfor %}
{% else %} {# Aucun Donnee#} {% endif %}
{{ knp_pagination_render(news) }}
{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}