mirror of
https://github.com/moparisthebest/wallabag
synced 2024-11-11 11:55:09 -05:00
15 lines
445 B
Twig
15 lines
445 B
Twig
{% extends "layout.twig" %}
|
|
{% block title %}{% trans "plop" %}{% endblock %}
|
|
{% block content %}
|
|
<h1>Errors</h1>
|
|
<ol>
|
|
{% for message in msg %}
|
|
<li>{{message}}</li>
|
|
{% endfor %}
|
|
</ol>
|
|
<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>
|
|
{% endblock %}
|