Files
Phraseanet/templates/mobile/lightbox/error.html.twig
Romain Neutron 2fd6ff1877 Fix templates
2012-07-24 13:13:25 +02:00

38 lines
631 B
Twig

{% extends "common/index.html.twig" %}
{% block javascript %}
{% endblock %}
{% block stylesheet %}
{% endblock %}
{% block content %}
<div data-role="page">
<div data-role="header">
<h1>{{module_name}}</h1>
</div>
<div data-role="content">
<h2 style="font-weight:bold;font-size:20px;margin:40px 0;">{% trans 'Erreur !' %}</h2>
<p>{% trans 'Le panier demande nexiste plus' %}</p>
<p>{{error}}</p>
<p><a style="color:black;" target="_self" href="/lightbox/">{% trans 'Retour a l\'accueil' %}</a></p>
</div>
<div data-role="footer">
</div>
</div>
{% endblock %}