diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-10-07 13:12:28 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-10-07 13:12:28 +0200 |
commit | 9d3b88b3796496b68e762d50904a7ab609edc9c3 (patch) | |
tree | daf5c8ded0b55e4f908ea632095fe85a15871f18 /themes | |
parent | 5eebe4e50dd5da7e87e98c366205ed3266348603 (diff) | |
download | wallabag-9d3b88b3796496b68e762d50904a7ab609edc9c3.tar.gz wallabag-9d3b88b3796496b68e762d50904a7ab609edc9c3.tar.zst wallabag-9d3b88b3796496b68e762d50904a7ab609edc9c3.zip |
bug fix #266: make installation steps easier
Diffstat (limited to 'themes')
-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 |