custom/plugins/TdsOrlob/src/Resources/views/storefront/layout/header/logo.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/layout/header/logo.html.twig' %}
  2. {% block layout_header_logo_image %}
  3.     {% if context.salesChannel.customFields.custom_site_logo == "standard" %}
  4.         {% set customLogo = "/bundles/tdsorlob/orlob-logo-standard.png" %}
  5.     {% elseif context.salesChannel.customFields.custom_site_logo == "halloween" %}
  6.         {% set customLogo = "/bundles/tdsorlob/orlob-logo-halloween.png" %}
  7.     {% else %}
  8.         {% set customLogo = "/bundles/tdsorlob/orlob-logo-standard.png" %}
  9.     {% endif %}
  10.     
  11.     <picture class="header-logo-picture">
  12.         <img src="{{ customLogo }}" alt="Zur Startseite wechseln" class="img-fluid header-logo-main-img">
  13.     </picture>
  14. {% endblock %}