{% extends 'base.html.twig' %} {% block title %}Accueil{% endblock %} {% block stylesheets %} {% endblock %} {% block body %}

Bienvenue sur la page d'accueil

{% set currentDate = "now"|date('Y-m-d') %} {% for notification in notifications %} {% if not notification.isRead and notification.dateButoir|date('Y-m-d') == currentDate %} {% endif %} {% endfor %}
{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}