templates/exception/404.html.twig line 1

Open in your IDE?
  1. {% extends 'layouts/exception_layout.html.twig' %}
  2. {% block title %}Not Found - {{ sitename }}{% endblock %}
  3. {% block body %}
  4. <div class="jumbotron">
  5.     <h1><i class="fa-solid fa-xmark"></i> Not Found</h1>
  6.     {% if message is not null and message is not empty %}
  7.         <div class="alert alert-warning">{{ message }}</div>
  8.     {% endif %}
  9.     Unfortunately the requested page cannot be found on this website.<br />
  10.     If you believe this is an error, please <a href="{{ path('contact') }}">contact me</a>.
  11. </div>
  12. {% endblock %}