templates/home/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Hello HomeController!{% endblock %}
  3. {% block body %}
  4. {% if is_granted('ROLE_ADMIN') == false %}
  5. <div class="text-center">
  6.     <h1 class="display-8 fw-bold">Utilisateur1:password1 pour se connecter en Admin</h1>
  7. </div>
  8. {% endif %}
  9. <div>
  10. Derniers articles:
  11. {% include 'article/list.html.twig' with { articles } %}
  12. </div>
  13. {% endblock %}