aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/default/error.twig
blob: 99eb1ed65e5b0469572925a9160d4cef8d27ca7c (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://inthepoche.com/doc">the documentation</a>.</p>
{% endblock %}