{% sw_extends '@Storefront/storefront/layout/header/logo.html.twig' %}
{% block layout_header_logo_image %}
{% if context.salesChannel.customFields.custom_site_logo == "standard" %}
{% set customLogo = "/bundles/tdsorlob/orlob-logo-standard.png" %}
{% elseif context.salesChannel.customFields.custom_site_logo == "halloween" %}
{% set customLogo = "/bundles/tdsorlob/orlob-logo-halloween.png" %}
{% else %}
{% set customLogo = "/bundles/tdsorlob/orlob-logo-standard.png" %}
{% endif %}
<picture class="header-logo-picture">
<img src="{{ customLogo }}" alt="Zur Startseite wechseln" class="img-fluid header-logo-main-img">
</picture>
{% endblock %}