{% from '../info-block-item/info-block-item.njk' import InfoBlockItem %}

{% set INFO_BLOCK_SECTION_DEFAULTS = {
  isPremium: false
} %}


{% macro InfoBlockSection(settings = {}) %}
  {% set settings = merge(INFO_BLOCK_SECTION_DEFAULTS, settings) %}

  {% call Section({
    containerClassName: 'container container--xl',
    className: 'info-block-section',
    title: false,
    teaser: false
  }) %}
    <div class="info-block-section__items {{ 'is-column-2' if settings.isPremium }}">
      {{ InfoBlockItem({
        icon: 'icons/e-mail',
        href: 'mailto:marktstand@link.de',
        text: 'marktstand@link.de'
      }) }}
      {{ InfoBlockItem({
        icon: 'icons/e-phone',
        href: 'tel:01756626636',
        text: '0175 6626636'
      }) }}
      {{ InfoBlockItem({
        icon: 'icons/e-home',
        target: '_blank',
        href: false,
        text: 'Gebäude 17, Eingang 2'
      }) }}
      {{ InfoBlockItem({
        icon: 'icons/e-website',
        target: '_blank',
        href: 'https://google.com',
        text: 'www.händlerwebsite-berlin.de'
      }) }}
      {{ InfoBlockItem({
        icon: 'icons/e-location',
        target: '_blank',
        href: 'https://google.com',
        text: 'Koordinaten'
      }) }}
      {{ InfoBlockItem({
        icon: 'icons/e-social',
        target: '_blank',
        href: 'https://google.com',
        text: 'Social Media Profil'
      }) }}
    </div>
  {% endcall %}
{% endmacro %}
