diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-10-24 23:51:59 -0700 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-10-24 23:51:59 -0700 |
commit | cd8a3441561fa63b9da1b705c4b28dee787f79b0 (patch) | |
tree | e21417394aac2f23060506e120601d74b19ecd29 /themes/default/error.twig | |
parent | 8e76eaad19c32fd9993fcd4c66de80394b55fbe2 (diff) | |
parent | 6ae804853f6f2e10d394b6abfb977b7a251ee7e4 (diff) | |
download | wallabag-cd8a3441561fa63b9da1b705c4b28dee787f79b0.tar.gz wallabag-cd8a3441561fa63b9da1b705c4b28dee787f79b0.tar.zst wallabag-cd8a3441561fa63b9da1b705c4b28dee787f79b0.zip |
Merge pull request #289 from inthepoche/dev
1.1.0
Diffstat (limited to 'themes/default/error.twig')
-rw-r--r-- | themes/default/error.twig | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/themes/default/error.twig b/themes/default/error.twig index c829d12b..99eb1ed6 100644 --- a/themes/default/error.twig +++ b/themes/default/error.twig | |||
@@ -1,6 +1,11 @@ | |||
1 | {% extends "layout.twig" %} | 1 | {% extends "layout.twig" %} |
2 | {% block title %}{% trans "plop" %}{% endblock %} | 2 | {% block title %}{% trans "plop" %}{% endblock %} |
3 | {% block content %} | 3 | {% block content %} |
4 | {{ msg|raw }} | 4 | <h1>Errors</h1> |
5 | <p>Don't forget <a href="http://inthepoche.com/doc">the documentation</a>.</p> | 5 | <ol> |
6 | {% for message in msg %} | ||
7 | <li>{{message}}</li> | ||
8 | {% endfor %} | ||
9 | </ol> | ||
10 | <p>Don't forget <a href="http://inthepoche.com/doc">the documentation</a>.</p> | ||
6 | {% endblock %} \ No newline at end of file | 11 | {% endblock %} \ No newline at end of file |