wallabag/themes/default/error.twig

11 lines
321 B
Twig
Raw Normal View History

2013-10-03 12:10:44 +00:00
{% 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://inthepoche.com/doc">the documentation</a>.</p>
2013-10-03 12:10:44 +00:00
{% endblock %}