21 lines
640 B
Twig
21 lines
640 B
Twig
<!doctype html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport"
|
|
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>{% block title %}Administration{% endblock %}</title>
|
|
<meta name="robots" content="noindex, nofollow">
|
|
<link rel="shortcut icon" type="image/png" href="{{ asset('favicon/favicon.ico') }}"/>
|
|
|
|
{{ encore_entry_link_tags('adminStyle') }}
|
|
{% block stylesheets %}
|
|
|
|
{% endblock %}
|
|
</head>
|
|
<body>
|
|
|
|
{{ encore_entry_script_tags('app') }}
|
|
</body>
|
|
</html> |