You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.1 KiB
Twig
37 lines
1.1 KiB
Twig
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<title>{% block title %}{% endblock %} - Giftopic</title>
|
|
|
|
<!-- STYLESHEET -->
|
|
{% block stylesheets %}
|
|
{{ encore_entry_link_tags('main') }}
|
|
{% endblock %}
|
|
</head>
|
|
<body>
|
|
{% include '_header.html.twig' %}
|
|
{% block body %}{% endblock %}
|
|
{% include '_footer.html.twig' %}
|
|
|
|
{# <div id="messages">#}
|
|
{# {% for type, messages in app.flashes(['error', 'warning']) %}#}
|
|
{# {% if messages %}#}
|
|
{# <div id="flash-{{ type }}" title="{{ type|trans({}, 'messages') }}">#}
|
|
{# {% for message in messages %}#}
|
|
{# <p>{{ message }}</p>#}
|
|
{# {% endfor %}#}
|
|
{# </div>#}
|
|
{# {% endif %}#}
|
|
{# {% endfor %}#}
|
|
{# </div>#}
|
|
|
|
<!-- JAVASCRIPT -->
|
|
{% block javascripts %}
|
|
{{ encore_entry_script_tags('main') }}
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|