wallabag/themes/default/error.twig

15 lines
445 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>
2014-01-28 04:49:57 -05:00
<p>Don't forget <a href="http://doc.wallabag.org/">the documentation</a>.</p>
<p>
{% trans "You can <a href='wallabag_compatibility_test.php'>check your configuration here</a>." %}
</p>
2013-12-15 00:18:26 -05:00
{% endblock %}