{% extends "base.html" %} {% block title %}{{ title|default('Error') }}{% endblock %} {% block breadcrumb %}{{ title|default('Error') }}{% endblock %} {% block content %}
{# ── Big status code ── #}
{{ status|default(404) }}
{# ── Title ── #}

{% if status|default(404) == 404 %} {% elif status|default(404) == 403 %} {% else %} {% endif %} {{ title|default('Something went wrong') }}

{# ── Message ── #} {% if message %}
Details
{{ message }}
{% endif %} {# ── Actions ── #}
Dashboard
{# ── Subtle hint ── #}
If this error persists, check the server logs or contact your administrator.
{% endblock %}