{% from 'components/sidebar-widget/sidebar-widget.njk' import SidebarWidget %}


{% macro ContactMapSection() %}
  {% call Section({
    containerClassName: '',
    title: false,
    teaser: false
  }) %}
    {{ Map({
      className: 'map--lg'
    }) }}
  {% endcall %}
{% endmacro %}

{% macro SidebarMapWidget() %}
  {% call SidebarWidget({
    title: 'Event Ort'
  }) %}
    {{ Map({
      className: 'map--sm'
    }) }}
  {% endcall %}
{% endmacro %}

