wallabag/themes/default/error.twig
William Theaker 43c1115eeb Edited text
2013-12-15 00:18:26 -05:00

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 %}