mirror of
https://github.com/moparisthebest/wallabag
synced 2024-11-11 03:45:09 -05:00
12 lines
323 B
Twig
12 lines
323 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.inthepoche.com/">the documentation</a>.</p>
|
|
{% endblock %}
|