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

{% set pageConfig = {
  useLayoutTop: false,
  useLayoutBottom: false,
  useSidebarAfter: false
} %}

{% set pageProps = {
  title: 'Markthalle Lageplan',
  h1: 'Markthalle Lageplan'
} %}

{% block content %}
  {% from 'components/rte/rte.njk' import RTE %}
  {% from 'components/plan/plan.njk' import PlanVertical, PlanLabels %}

  {% call Section({
    containerClassName: 'container container--xl',
    title: false,
    teaser: false
  }) %}
    {{ PlanLabels() }}
    {{ PlanVertical({
      useRoutes: false,
      usePopovers: true
    }) }}
  {% endcall %}


{#  {% call Section({#}
{#    containerClassName: 'container container--xl',#}
{#    title: false,#}
{#    teaser: false#}
{#  }) %}#}
{#    {% call GridBuilder.Grid({#}
{#      attrs: {#}
{#        style: '--rocket-ui-grid-column-gap: 40px'#}
{#      }#}
{#    }) %}#}
{#      {% call GridBuilder.GridColumn({ xl: 6, lg: 5 }) %}#}
{#      {% endcall %}#}

{#      {% call GridBuilder.GridColumn({ xl: 6, lg: 7 }) %}#}
{#        {{ ArticleBuilder.ArticleList({ hasFocus: true }) }}#}
{#      {% endcall %}#}
{#    {% endcall %}#}
{#  {% endcall %}#}
{% endblock %}
