wallabag/themes/default/error.twig

12 lines
323 B
Twig
Raw Normal View History

2013-10-03 12:10:44 +00:00
{% extends "layout.twig" %}
{% block title %}{% trans "plop" %}{% endblock %}
{% block content %}
<h1>Errors</h1>
<ol>
{% for message in msg %}
<li>{{message}}</li>
{% endfor %}
</ol>
2013-12-15 05:18:26 +00:00
<p>Don't forget <a href="http://doc.inthepoche.com/">the documentation</a>.</p>
{% endblock %}