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