28 lines
808 B
Twig
28 lines
808 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>
|
||
|
<form action="">
|
||
|
<input type="text" style="visibility:visible" id="saisie">
|
||
|
</form>
|
||
|
<div class="container">
|
||
|
<div class="wrapper">
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
{{ encore_entry_script_tags('app') }}
|
||
|
</body>
|
||
|
</html>
|