{% extends 'base.html.twig' %} {% block title %} Error {{ status_code }} {% endblock %} {% block body %}
{% if status_code == 404 %}
Sorry, the page you are looking for does not exist.
{% elseif status_code == 500 %}
Sorry, something went wrong on our server.
{% elseif status_code == 401 %}
🔒 For your security, your session has expired.
Don’t worry — just log in again to continue enjoying our services.
{% else %}
Sorry, an unexpected error occurred.
{% endif %}