custom/plugins/HyBuys/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_inner %}
  3. {#    <div class="header-logo-main">#}
  4.         {% block layout_header_logo_link %}
  5.             <a class="header-logo-main-link"
  6.                href="{{ path('frontend.home.page') }}"
  7.                title="{{ "header.logoLink"|trans|striptags }}">
  8.                 {% block layout_header_logo_image %}
  9.                         {% block layout_header_logo_image_tablet %}
  10. {#                            {% if theme_config('sw-logo-tablet') and theme_config('sw-logo-tablet') != theme_config('sw-logo-desktop') %}#}
  11. {#                                <source srcset="{{ theme_config('sw-logo-tablet') |sw_encode_url }}"#}
  12. {#                                        media="(min-width: {{ theme_config('breakpoint.md') }}px) and (max-width: {{ theme_config('breakpoint.lg') - 1 }}px)">#}
  13. {#                            {% endif %}#}
  14.                         {% endblock %}
  15.                         {% block layout_header_logo_image_mobile %}
  16. {#                            {% if theme_config('sw-logo-mobile') and theme_config('sw-logo-mobile') != theme_config('sw-logo-desktop') %}#}
  17. {#                                <source srcset="{{ theme_config('sw-logo-mobile') |sw_encode_url }}"#}
  18. {#                                        media="(max-width: {{ theme_config('breakpoint.md') - 1 }}px)">#}
  19. {#                            {% endif %}#}
  20.                         {% endblock %}
  21.                         {% block layout_header_logo_image_default %}
  22.                             {% if theme_config('sw-logo-desktop') %}
  23.                                 <img src="{{ theme_config('sw-logo-desktop')  }}"
  24.                                      width="157"
  25.                                      height="52"
  26.                                      alt="{{ "header.logoLink"|trans|striptags }}"
  27.                                      title="{{ "header.logoLink"|trans|striptags }}"/>
  28. {#                                <img src="{{ theme_config('sw-logo-desktop') |sw_encode_url }}"#}
  29. {#                                     alt="{{ "header.logoLink"|trans|striptags }}"#}
  30. {#                                     class="img-fluid header-logo-main-img"/>#}
  31.                             {% endif %}
  32.                         {% endblock %}
  33.                 {% endblock %}
  34.             </a>
  35.         {% endblock %}
  36. {#    </div>#}
  37. {% endblock %}