templates/page/office/index/index.html.twig line 1

Open in your IDE?
  1. {% extends 'layout/base.html.twig' %}
  2. {% block title %}Our Locations – {{ parent() }}{% endblock %}
  3. {% block seo_en %}{{ url('office_index') }}{% endblock %}
  4. {% block seo_hu %}{{ url('office_index', {'lang': 'hu'}) }}{% endblock %}
  5. {% block seo_x %}{{ url('office_index') }}{% endblock %}
  6. {% block body_classes %}locations-index{% endblock %}
  7. {% block content %}
  8.     {% include 'common/components/gmap.html.twig' with { markers: locations|locations_to_markers|json_encode } only %}
  9.     <section class="locations-page section" id="our-locations">
  10.         {% include 'page/office/index/components/locations.html.twig' with { items: locations } only %}
  11.     </section>
  12.     {% include 'common/components/jobs.html.twig' with { items: jobs } only %}
  13.     {% include 'common/components/contact_form.html.twig' with { defaultInquiry: true } only %}
  14. {% endblock %}
  15. {% block javascripts %}
  16.     {{ parent() }}
  17.     <script
  18.         type='text/javascript'
  19.         src='https://maps.googleapis.com/maps/api/js?key={{ google_maps_api_key }}&callback=map_init&ver=0.2.0'
  20.         id='google-maps-js'
  21.     ></script>
  22. {% endblock %}