summaryrefslogtreecommitdiff
path: root/src/application/templates/modern/error_page.twig
blob: dde40577f788645a06be30dc81a4592ade9ce1b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% set title = __("Error") %}
{% extends "base.twig" %}

{% block navbar %}
    {% if not ctx.skipLoginCheck %}
        {{ parent() }}
    {% endif %}
{% endblock %}

{% block content %}
    {% include "components/alert_error.twig" with { message: ctx.message } %}
{% endblock %}