caisse-bliss/app/Resources/views/base.html.twig

28 lines
646 B
Twig
Raw Normal View History

2018-04-04 16:25:25 +02:00
<!DOCTYPE html>
<html>
<head>
2018-04-04 17:42:27 +02:00
<meta charset="UTF-8">
<title>{% block title %}Fiche de compte dynamique{% endblock %}</title>
2018-04-04 16:25:25 +02:00
{% block stylesheets %}
<link rel="stylesheet" href="{{ asset('build/app.css') }}">
{% endblock %}
</head>
<body>
2018-04-06 15:43:14 +02:00
<div class="bg-img"></div>
2018-04-04 17:42:27 +02:00
{% block navigation %}
{% include 'default/login-choices.html.twig' %}
{% endblock %}
2018-04-05 17:24:43 +02:00
<div class="container">
{% block body %}
<div class="well">
Votre caisse mobile en ligne
</div>
{% endblock %}
</div>
2018-04-04 16:25:25 +02:00
{% block javascripts %}
<script src="{{ asset('build/app.js') }}"></script>
{% endblock %}
</body>
</html>