<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}SERENITEC{% endblock %}</title>
<link href='https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css' rel='stylesheet'>
<link rel="stylesheet" type="text/css" href="https://npmcdn.com/flatpickr/dist/themes/dark.css">
{% include 'layout/styles/styles.datatable.html.twig' %}
{% include 'layout/styles/styles.bootstrap.html.twig' %}
<style>
:root {
--custom-color: rgb(153, 202, 60);
--custom-a-30-color: rgba(153, 202, 60, 0.3);
--custom-a-50-color: rgba(153, 202, 60, 0.5);
--custom-a-80-color: rgba(153, 202, 60, 0.8);
}
</style>
{{ encore_entry_link_tags('main') }}
{% block stylesheets %}{% endblock %}
</head>
<body>
{% for message in app.flashes('success') %}
<div class="alert alert-success">
{{ message }}
<span class="removeFlash">❌</span>
</div>
{% endfor %}
{% block body %}{% endblock %}
<script src="{{ asset('bundles/app/jQuery/jquery-3.6.0.min.js') }}"></script>
<script src="{{ asset('bundles/app/bootstrap/bootstrap-5.2.0-beta1/dist/js/bootstrap.bundle.js') }}"></script>
{% include 'layout/scripts/script.datatable.html.twig' %}
{% block javascripts %}
{{ encore_entry_script_tags('main') }}
{% endblock %}
</body>
</html>