aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/default/error.twig
blob: 528a0985866737f0066c494d94b07f0f694d4273 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends "layout.twig" %}
{% block title %}{% trans "plop" %}{% endblock %}
{% block content %}
    <h1>Errors</h1>
    <ol>
        {% for message in msg %}
            <li>{{message}}</li>
        {% endfor %}
    </ol>
    <p>Don't forget <a href="http://doc.wallabag.org/">the documentation</a>.</p>
    <p>
        {% trans "You can <a href='wallabag_compatibility_test.php'>check your configuration here</a>." %}
    </p>
{% endblock %}