templates/default/home.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}HOME PAGE{% endblock %}
  3. {% block body %}
  4.     {% for flashError in app.flashes('verify_email_error') %}
  5.         <div class="alert alert-danger" role="alert">{{ flashError }}</div>
  6.     {% endfor %}
  7.     <h1>Home Page</h1>
  8.     {% if is_granted('IS_ANONYMOUS') %}
  9.         <a href="{{ path('app_login') }}">LOGIN</a>
  10.     {% else %}
  11.         <a href="{{ path('app_user_home') }}">Espace Utilisateur</a>
  12.         <a href="{{ path('app_logout') }}">Logout</a>
  13.     {% endif %}
  14.     <ul>
  15.     {% for service in services %}
  16.         <li>{{ service.name }}</li>
  17.     {% endfor %}
  18.     </ul>
  19. {% endblock %}