templates/base.html.twig line 1

  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.         <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.         <title>Expace Development - {% block title %}{% endblock %}</title>
  8.         <script src="https://kit.fontawesome.com/99b1503dd1.js" crossorigin="anonymous"></script>
  9.         <script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script>
  10.         <script src="https://cdn.ckeditor.com/ckeditor5/36.0.1/super-build/ckeditor.js"></script>
  11.         <script src="https://cdn.ckeditor.com/ckeditor5/36.0.1/super-build/translations/fr.js"></script>
  12.         <script src="https://code.jquery.com/jquery-3.6.3.min.js" integrity="sha256-pvPw+upLPUjgMXY0G+8O0xUf+/Im1MZjXxxgOcBQBXU=" crossorigin="anonymous"></script>
  13.         <link rel="icon" href="/images/favicon.ico" type="image/x-icon">
  14.         <link href="/css/prism.css" rel="stylesheet" />
  15.         
  16.         {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  17.         {% block stylesheets %}
  18.             {{ encore_entry_link_tags('app') }}
  19.         {% endblock %}
  20.         {% block javascripts %}
  21.             {{ encore_entry_script_tags('app') }}
  22.         {% endblock %}
  23.     </head>
  24.     <body>
  25.         {% include "partials/topbar.html.twig" %}
  26.         
  27.         {% block body %}{% endblock %}
  28.         {% include "partials/_footer.html.twig" %}
  29.         <script src="/js/glightbox.min.js"></script>
  30.         <script src="/js/isotope.pkgd.min.js"></script>
  31.         <script src="/js/purecounter.js"></script>
  32.         <script src="/js/swiper-bundle.min.js"></script>
  33.         <script src="/js/noframework.waypoints.js"></script>
  34.         <script src="/js/main.js"></script>
  35.         <script src="/js/prism.js"></script>
  36.     </body>
  37. </html>