{% extends 'layout/base.html.twig' %}
{% block title %}Our Locations – {{ parent() }}{% endblock %}
{% block seo_en %}{{ url('office_index') }}{% endblock %}
{% block seo_hu %}{{ url('office_index', {'lang': 'hu'}) }}{% endblock %}
{% block seo_x %}{{ url('office_index') }}{% endblock %}
{% block body_classes %}locations-index{% endblock %}
{% block content %}
{% include 'common/components/gmap.html.twig' with { markers: locations|locations_to_markers|json_encode } only %}
<section class="locations-page section" id="our-locations">
{% include 'page/office/index/components/locations.html.twig' with { items: locations } only %}
</section>
{% include 'common/components/jobs.html.twig' with { items: jobs } only %}
{% include 'common/components/contact_form.html.twig' with { defaultInquiry: true } only %}
{% endblock %}
{% block javascripts %}
{{ parent() }}
<script
type='text/javascript'
src='https://maps.googleapis.com/maps/api/js?key={{ google_maps_api_key }}&callback=map_init&ver=0.2.0'
id='google-maps-js'
></script>
{% endblock %}