caisse-bliss/app/Resources/views/base.html.twig
2018-04-18 15:42:30 +02:00

32 lines
705 B
Twig
Executable File

<!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>
{% if app.user is not defined %}
<div class="bg-img"></div>
{% else %}
<div class="bg-img-logged-in"></div>
{% endif %}
{% block navigation %}
{% endblock %}
<div id="bodyland">
<div class="container">
{% include 'default/header.html.twig' %}
{% block body %}
{% endblock %}
</div>
</div>
{% block javascripts %}
<script src="{{ asset('build/app.js') }}"></script>
{% endblock %}
</body>
</html>