{% extends 'templates/layouts/page.njk' %}

{% set pageConfig = {
  useLayoutBottom: true
} %}

{% set pageProps = {
  h1: 'Anfahrt & Parken'
} %}

{% block content %}
  {% import 'components/info-box/info-box.njk' as InfoBoxBuilder %}
  {% from 'components/rte/rte.njk' import RTE %}
  {% from 'components/video/video.njk' import Video %}

  {{ Video({
    className: 'video--widescreen'
  }) }}

  {% call Section({
    containerClassName: 'container container--xl',
    title: false,
    teaser: false
  }) %}
    {{ InfoBoxBuilder.InfoBoxList({
      items: [
        { image: 'parking.png', title: 'Parkplätze' },
        { image: 'bus.png', title: 'Bus' },
        { image: 'train.png', title: 'Bahn' }
      ]
    }) }}
  {% endcall %}
{% endblock %}

{% block layoutBottom %}
  {% from 'components/maps/maps.njk' import ContactMapSection %}

  {{ ContactMapSection() }}
{% endblock %}

