ParcBundle/Resources/views/parcbundle/home/index.html.twig line 1

Open in your IDE?
  1. {% extends '@parcBundle/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. {% endblock %}
  7. {% block content %}
  8.     <!-- Section Carousel -->
  9.     {% include "@parcBundle/home/carousel.html.twig" %}
  10.     <!-- Section Comment travaillons-nous ? -->
  11.     {% include "@parcBundle/home/howToWork.html.twig" %}
  12.     <!-- Section Nos valeurs -->
  13.     {% include "@parcBundle/home/nosValeurs.html.twig" %}
  14.     <!-- Section Nos Déchets -->
  15.     {% include "@parcBundle/home/dechets.html.twig" %}
  16.     <!-- Section Nous contacter -->
  17.     {% include "@parcBundle/home/contactUs.html.twig" %}
  18. {% endblock %}
  19. {% block javascripts %}
  20.     {{ parent() }}
  21. {% endblock %}