{% set globalSet = craft.app.globals().getSetByHandle('toty') %}

<div class="container-fluid blackBackground backgroundImagePosition p-5 mt-3" style="background-image: url('images/background-sponsors.jpg');">
  <div class="row">
    <div class="col-12 text-center pb-3">
    {{ globalSet.totySponsoredHeadline }}
    </div>
  </div>
  <div class="row">
  <div class="col-12 text-center">
{% for block in globalSet.totySponsorList.all() %}
    {% switch block.type %}
        {% case "totySponsor" %}
        <span class="logolistBG" style="background-image: url('{{ block.totySponsorLogo.one().url }}')"><a href="{{ block.totySponsorLink }}" target="_blank"><img class="logolist" src="{{ block.totySponsorLogo.one().url }}" alt="{{ block.title }}"></a></span> 
    {% endswitch %}
{% endfor %}
  </div>
  </div>
</div>