caisse-bliss/templates/base.html.twig

21 lines
484 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>
2018-03-15 16:57:30 +01:00
{% block stylesheets %}
<link rel="stylesheet" href="{{ asset('build/css/app.css') }}">
{% endblock %}
2018-03-15 16:04:00 +01:00
</head>
<body>
{% block body %}
<div class="well">
Votre caisse mobile en ligne
</div>
{% endblock %}
2018-03-15 16:57:30 +01:00
{% block javascripts %}
<script src="{{ asset('build/js/app.js') }}"></script>
{% endblock %}
2018-03-15 16:04:00 +01:00
</body>
2018-03-13 15:05:52 +01:00
</html>