aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/default/error.twig
blob: 8a6a4d6cbc680951d58104daf072061b42bab5a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{% 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>
{% endblock %}