28 lines
608 B
Twig
Executable File
28 lines
608 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">
|
|
{% block body %}
|
|
{% endblock %}
|
|
</div>
|
|
{% block javascripts %}
|
|
<script src="{{ asset('build/app.js') }}"></script>
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|