caisse-bliss/app/Resources/views/base.html.twig
2018-04-05 17:24:43 +02:00

27 lines
619 B
Twig

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}Fiche de compte dynamique{% endblock %}</title>
{% block stylesheets %}
<link rel="stylesheet" href="{{ asset('build/app.css') }}">
{% endblock %}
</head>
<body>
{% block navigation %}
{% include 'default/login-choices.html.twig' %}
{% endblock %}
<div class="container">
{% block body %}
<div class="well">
Votre caisse mobile en ligne
</div>
{% endblock %}
</div>
{% block javascripts %}
<script src="{{ asset('build/app.js') }}"></script>
{% endblock %}
</body>
</html>