mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-12 12:01:15 +00:00
11 lines
321 B
Twig
11 lines
321 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>
|
|
{% endblock %}
|