templates/bundles/TwigBundle/Exception/error404.html.twig line 1

Open in your IDE?
  1. {% extends 'layout.html.twig' %}
  2. {% block title %}Page non trouvée (404){% endblock %}
  3. {% block meta_robots %}noindex,nofollow{% endblock %}
  4. {% block content %}
  5. <style>
  6. text { display: none!important; }
  7. /* Supprime le soulignement au survol pour le lien de la page 404 */
  8. a.error-page-link:hover {
  9. text-decoration: none !important;
  10. }
  11. </style>
  12. <div id="demande" class="error-page container">
  13. <div class="row">
  14. <div class="col-sm-12">
  15. <h2>Page non trouvée (404)</h2>
  16. <p>La page que vous cherchez n'existe pas ou a été déplacée.</p>
  17. <p>Vérifiez l'URL ou revenez à la <a href="/" class="text-orange error-page-link">page d'accueil</a>.</p>
  18. </div>
  19. </div>
  20. </div>
  21. {% endblock %}
  22. {% block jsAddClass %}
  23. <script>
  24. $('header').addClass('navbar-fixed-top');
  25. </script>
  26. {% endblock %}