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

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

{% set pageProps = {
  title: 'Page Über Uns',
  h1: 'Über Uns'
} %}

{% block content %}
  {% import 'components/search/search.njk' as SearchBuilder %}
  {% from 'components/rte/rte.njk' import RTE %}
  {% from 'components/about-us/about-us.njk' import AboutAsSection %}

  {% call Section({
    title: false,
    teaser: false
  }) %}
    {% call RTE({
      className: ''
    }) %}
      <p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.</p>
    {% endcall %}
  {% endcall %}

  {% call Section({
    className: 'section--light-green',
    title: 'Das sind wir',
    teaser: false
  }) %}
    {% call RTE({
      className: ''
    }) %}
      <p>One-Stop-Shopping. Einmal ankommen, einmal parken und alles einkaufen, was man benötigt. Das ist schon heute Realität auf unserem Großmarkt. Obst und Gemüse, Fleisch- und Wurstwaren, Fisch, Getränke, Convenienceprodukte, Spezialitäten und Delikatessen. Und seit 2010 auch ein breites Angebot an Blumen, Pflanzen und Floristikbedarf. Dazu kommt ein umfangreiches Serviceangebot: Lager, Kühlen, Tanken, Waschen und Reparieren. Der Großmarkt Berlin, ein modernes Frische- und Logistikzentrum. Dafür engagieren wir uns.</p>
    {% endcall %}
  {% endcall %}

  {{ AboutAsSection() }}

  {% call ContentSection({ title: 'Annual Reports' }) %}
    {{ DownloadList({ count: 5 }) }}
  {% endcall %}

  {% call AccordionGroup() %}
    {% call Accordion({
      className: 'accordion--md',
      titleTag: 'h2',
      title: chance.sentence({ words: 4 }),
      disabled: false
    }) %}
      <p>{{ chance.paragraph({ sentences: 2 }) }}</p>
      <p>{{ chance.paragraph({ sentences: 2 }) }}</p>
    {% endcall %}
    {% call Accordion({
      className: 'accordion--md',
      titleTag: 'h2',
      title: chance.sentence({ words: 4 }),
      disabled: false
    }) %}
      <p>{{ chance.paragraph({ sentences: 2 }) }}</p>
      <p>{{ chance.paragraph({ sentences: 2 }) }}</p>
    {% endcall %}
    {% call Accordion({
      className: 'accordion--md',
      titleTag: 'h2',
      title: chance.sentence({ words: 4 }),
      disabled: false
    }) %}
      <p>{{ chance.paragraph({ sentences: 2 }) }}</p>
      <p>{{ chance.paragraph({ sentences: 2 }) }}</p>
    {% endcall %}
    {% call Accordion({
      className: 'accordion--md',
      titleTag: 'h2',
      title: chance.sentence({ words: 4 }),
      disabled: false
    }) %}
      <p>{{ chance.paragraph({ sentences: 2 }) }}</p>
      <p>{{ chance.paragraph({ sentences: 2 }) }}</p>
    {% endcall %}
  {% endcall %}
{% endblock %}

{% block layoutBottom %}
  {% from 'components/excursions/excursions.njk' import ExcursionsSection %}

  {{ ExcursionsSection(
    title = 'Wie engagieren uns und setzen auf Nachhaltigkeit!',
    text = false,
    twoButtons = true
  ) }}
{% endblock %}

