<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}Welcome!{% endblock %}</title>
<link rel="icon" href="{{asset('data/images/logo.ico')}}">
{# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
{% block stylesheets %}
{# {{ encore_entry_link_tags('app') }} #}
<link href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900" rel="stylesheet">
<link rel="stylesheet" href="{{asset('tools/bootstrap/css/bootstrap.css')}}">
<link rel="stylesheet" href="{{asset('tools/personnal/css/style.css')}}">
{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
</body>
{% block javascripts %}
{# {{ encore_entry_script_tags('app') }} #}
<script src="{{asset('tools/cdn/js/jquery.js')}}"></script>
<script>
// const routes = {
// histo_heure_recup:"{{path('histo_heure_recup')}}",
// }
// // Récupérer l'heure actuelle
// var dateActuelle = new Date();
// var heureActuelle = dateActuelle.getHours() + ':' + dateActuelle.getMinutes() ;
// $.ajax({
// url: routes.histo_heure_recup,
// type: 'POST',
// data: {
// heureLocal:heureActuelle
// },
// success: function(response) {
// console.log(heureActuelle) ;
// },
// error: function(error) {
// console.log("Heure : "+error) ;
// }
// });
</script>
{% endblock %}
</html>