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

32 lines
705 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-18 14:39:15 +02:00
{% if app.user is not defined %}
<div class="bg-img"></div>
{% else %}
<div class="bg-img-logged-in"></div>
{% endif %}
2018-04-04 17:42:27 +02:00
{% block navigation %}
{% endblock %}
2018-04-18 14:21:58 +02:00
<div id="bodyland">
2018-04-18 15:19:00 +02:00
<div class="container">
{% include 'default/header.html.twig' %}
2018-04-18 15:42:30 +02:00
{% block body %}
{% endblock %}
2018-04-18 15:19:00 +02:00
</div>
2018-04-18 15:42:30 +02:00
2018-04-05 17:24:43 +02:00
</div>
2018-04-04 16:25:25 +02:00
{% block javascripts %}
<script src="{{ asset('build/app.js') }}"></script>
{% endblock %}
</body>
</html>