templates/exceptions/autherror404.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}{{ '404 Page Not Found' | trans }}{% endblock %}
  3. {% block stylesheets %}
  4.     {{ parent() }}
  5. {% endblock %}
  6. {% block body %}
  7.     {{ "Cette page n'existe pas."|trans }}<br />
  8.     {{ "En cas de problème vous pouvez contacter votre administrateur"|trans }}
  9. {% endblock %}