templates/pages/locoLocal.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% block content %}
  3.     {{ include('pages/components/mainHeader.html.twig') }}
  4.     {{ include('pages/components/carouselLoko.html.twig') }}
  5.     {{ include('pages/components/grid.html.twig') }}
  6.     {{ include('pages/components/contactForm.html.twig', {'processPath': path('contact_form_send')}) }}
  7.     {{ include('pages/components/specifications.html.twig') }}
  8.     {% for overview in content.overviews %}
  9.         {{ include('pages/components/overview.html.twig', {'content': overview }) }}
  10.     {% endfor %}
  11.     {{ include('pages/components/advertisingModal.html.twig',  {'modalId': '1'}) }}
  12. {% endblock %}