templates/home/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block body %}
  3.     <section id="home" class="relative">
  4.         {# ... Contenu hero du fichier base2 ... #}
  5.     </section>
  6.     <section id="services" class="py-20">
  7.         {# ... Contenu services ... #}
  8.     </section>
  9. {% endblock %}
  10. {% block javascripts %}
  11.     {# Copiez ici le script JS de votre fichier base2.html.twig #}
  12.     <script>
  13.         // Fonctions comme populateServiceCards(), updateAllContent(), etc.
  14.     </script>
  15. {% endblock %}