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

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

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