]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - themes/default/error.twig
[change] poche logo is now at SVG format, see #373
[github/wallabag/wallabag.git] / themes / default / error.twig
index c829d12bba595b6d519be1cf461ff98d467b3fe8..4cfc482401c223ae0f80a28baf3bc8b25371fcc1 100644 (file)
@@ -1,6 +1,11 @@
 {% extends "layout.twig" %}
 {% block title %}{% trans "plop" %}{% endblock %}
 {% block content %}
-        {{ msg|raw }}
-        <p>Don't forget <a href="http://inthepoche.com/doc">the documentation</a>.</p>
-{% endblock %}
\ No newline at end of file
+    <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 %}