templates/home/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {%  block stylesheets %}
  3.     {{ parent() }}
  4.     <!-- <link rel="stylesheet" href="{{ asset('build/css/homepage.css') }}"> -->
  5. {% endblock %}
  6. {% block content %}
  7.     <!-- Section Carousel -->
  8.     {% include "home/carousel.html.twig" %}
  9.     <!-- Section Nos séances -->
  10.     {% include "home/seance.html.twig" %}
  11.     <!-- Section Avis / Partenaires -->
  12.     {% include "home/avis.html.twig" %}
  13. {% endblock %}
  14. {% block javascripts %}
  15.     {{ parent() }}
  16.     {{ encore_entry_script_tags('sliderJs', null, 'studio_build') }}
  17. {% endblock %}