templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. {{ include('partials/main.html.twig') }}
  3. <head>
  4.     <meta charset="UTF-8">
  5.     {{ include('partials/title-meta.html.twig') }}
  6.     {% block stylesheets %}
  7.         {{ encore_entry_link_tags('app') }}
  8.     {% endblock %}
  9.     {% block javascripts %}
  10.         {{ encore_entry_script_tags('app') }}
  11.     {% endblock %}
  12. {#    <!-- jsvectormap css -->#}
  13. {#    <link href="/libs/jsvectormap/css/jsvectormap.min.css" rel="stylesheet" type="text/css"/>#}
  14. {#    <!--Swiper slider css-->#}
  15. {#    <link href="/libs/swiper/swiper-bundle.min.css" rel="stylesheet" type="text/css"/>#}
  16.     {{ include('partials/head-css.html.twig') }}
  17.     <title>
  18.         {% block title %}
  19.             Bienvenue!
  20.         {% endblock %}
  21.     </title>
  22. </head>
  23. <body>
  24.     {# Menus page (side et top) #}
  25.     {% block menu %}
  26.         {{ include('partials/menu.html.twig') }}
  27.     {% endblock %}
  28.     <main class="main-content page-content">
  29.         {% block main %}
  30.         {% endblock %}
  31.     </main>
  32.     {{ include('partials/footer.html.twig') }}
  33.     {{ include('partials/vendor-scripts.html.twig') }}
  34.     <!-- password-addon init -->
  35.     <script src="{{ asset ('/js/pages/password-addon.init.js') }}"></script>
  36.     <script src="{{ asset('/js/pages/form-pickers.init.js') }}"></script>
  37.     <!--app js-->
  38.     <script src="{{ asset('/js/app.js')}}"></script>
  39. </body>
  40. {#<html> balise ouverte dans include partials/main.html#}
  41. </html>