templates/home/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {%  block stylesheets  %}
  3.     {{ parent() }}
  4.     {{ encore_entry_link_tags('carousel', null, 'parc_build') }}
  5.     {{ encore_entry_link_tags('parc_howToWork', null, 'parc_build') }}
  6.     {{ encore_entry_link_tags('parc_dechets', null, 'parc_build') }}
  7. {% endblock %}
  8. {% block content %}
  9.     <!-- Section Carousel -->
  10.     {% include "home/carousel.html.twig" %}
  11.     <!-- Section Nos Valeurs -->
  12.     {% include "home/howToWork.html.twig" %}
  13.     <!-- Section déchets -->
  14.     {% include "home/dechets.html.twig" %}
  15.     <!-- Section retirge -->
  16.     {% include "retirage/index.html.twig" %}
  17. {% endblock %}
  18. {% block javascripts %}
  19.     {{ parent() }}
  20. {% endblock %}