caisse-bliss/templates/base.html.twig

17 lines
347 B
Twig
Raw Normal View History

2018-03-13 15:05:52 +01:00
<!DOCTYPE html>
<html>
2018-03-15 16:04:00 +01:00
<head>
<meta charset="UTF-8">
<title>{% block title %}Fiche de compte dynamique{% endblock %}</title>
{% block stylesheets %}{% endblock %}
</head>
<body>
{% block body %}
<div class="well">
Votre caisse mobile en ligne
</div>
{% endblock %}
{% block javascripts %}{% endblock %}
</body>
2018-03-13 15:05:52 +01:00
</html>