templates/base.html.twig line 1

Open in your IDE?
  1. <html>
  2. <head>
  3. <meta charset="UTF-8">
  4. <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
  5. <meta http-equiv="Pragma" content="no-cache">
  6. <meta http-equiv="Expires" content="0">
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. <title>{% block title %}Welcome!{% endblock %}</title>
  9. <link rel="icon" href="{{asset('data/images/logo.ico')}}">
  10. {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  11. {% block stylesheets %}
  12. {# {{ encore_entry_link_tags('app') }} #}
  13. <link href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900" rel="stylesheet">
  14. <link rel="stylesheet" href="{{asset('tools/bootstrap/css/bootstrap.css')}}">
  15. <link rel="stylesheet" href="{{asset('tools/personnal/css/style.css')}}">
  16. {% endblock %}
  17. </head>
  18. <body>
  19. {% block body %}{% endblock %}
  20. </body>
  21. {% block javascripts %}
  22. {# {{ encore_entry_script_tags('app') }} #}
  23. <script src="{{asset('tools/cdn/js/jquery.js')}}"></script>
  24. <script>
  25. // const routes = {
  26. // histo_heure_recup:"{{path('histo_heure_recup')}}",
  27. // }
  28. // // Récupérer l'heure actuelle
  29. // var dateActuelle = new Date();
  30. // var heureActuelle = dateActuelle.getHours() + ':' + dateActuelle.getMinutes() ;
  31. // $.ajax({
  32. // url: routes.histo_heure_recup,
  33. // type: 'POST',
  34. // data: {
  35. // heureLocal:heureActuelle
  36. // },
  37. // success: function(response) {
  38. // console.log(heureActuelle) ;
  39. // },
  40. // error: function(error) {
  41. // console.log("Heure : "+error) ;
  42. // }
  43. // });
  44. </script>
  45. {% endblock %}
  46. </html>