<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>{% block title %}Welcome!{% endblock %}</title>
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text></svg>">
{#TODO solution provisoire pour font custom pour un client#}
<link href="https://fonts.cdnfonts.com/css/arial-2" rel="stylesheet">
{# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
{% block stylesheets %}
{{ encore_entry_link_tags('app') }}
{% endblock %}
{% block javascripts %}
<script src="{{ asset('js/lib/handlebars.runtime.min-v4.7.7.js') }}"></script>
<script src="{{ asset('js/template/template.js') }}"></script>
{{ encore_entry_script_tags('app') }}
{% endblock %}
</head>
{#TODO solution provisoire pour font custom pour un client#}
{# {% set fontCustom = (app.user and app.user.email == "ffr@ffr") %}#}
{# <body data-turbo="false" class="bg-white dark:bg-dark-950 {{ fontCustom ? "font-custom" : "" }}">#}
{#TODO custom font en attente#}
<body data-turbo="false" class="bg-white dark:bg-dark-950">
{% block header %}{% endblock %}
{% block body %}{% endblock %}
{% block footer %}{% endblock %}
</body>
</html>