error404.html.twig 466 B

123456789101112131415
  1. {% extends 'base.html.twig' %}
  2. {% block title %}
  3. {{ parent() }} - An Error Occurred: {{ status_text }}
  4. {% endblock %}
  5. {% block content %}
  6. <h1>Oops! An Error Occurred</h1>
  7. <h2>The server returned a "{{ status_code }} {{ status_text }}".</h2>
  8. <div>
  9. Something is broken. Please let us know what you were doing when this error occurred.
  10. We will fix it as soon as possible. Sorry for any inconvenience caused.
  11. </div>
  12. {% endblock %}