wallabag/themes/default/error.twig

12 lines
323 B
Twig
Raw Normal View History

2013-10-03 08:10:44 -04: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 00:18:26 -05:00
<p>Don't forget <a href="http://doc.inthepoche.com/">the documentation</a>.</p>
{% endblock %}