custom/plugins/zenitPlatformStratus/src/Resources/views/storefront/component/footer/zen-footer-logo.html.twig line 1

Open in your IDE?
  1. {% block zen_layout_footer_logo_inner %}
  2.     <div class="footer-logo-main">
  3.         {% block zen_layout_footer_logo_image %}
  4.             <picture class="footer-logo-picture">
  5.                 {% block zen_layout_footer_logo_image_tablet %}
  6.                     {% if theme_config('zen-logo-footer-tablet') %}
  7.                         <source srcset="{{ theme_config('zen-logo-footer-tablet') |sw_encode_url }}"
  8.                                 media="(min-width: {{ theme_config('breakpoint.md') }}px) and (max-width: {{ theme_config('breakpoint.lg') - 1 }}px)">
  9.                     {% endif %}
  10.                 {% endblock %}
  11.                 {% block zen_layout_footer_logo_image_mobile %}
  12.                     {% if theme_config('zen-logo-footer-mobile') %}
  13.                         <source srcset="{{ theme_config('zen-logo-footer-mobile') |sw_encode_url }}"
  14.                                 media="(max-width: {{ theme_config('breakpoint.md') - 1 }}px)">
  15.                     {% endif %}
  16.                 {% endblock %}
  17.                 {% block zen_layout_footer_logo_image_default %}
  18.                     {% if theme_config('zen-logo-footer-desktop') %}
  19.                         <img src="{{ theme_config('zen-logo-footer-desktop') |sw_encode_url }}"
  20.                              alt="{{ config('core.basicInformation.shopName') }}"
  21.                              class="img-fluid footer-logo-main-img"/>
  22.                     {% endif %}
  23.                 {% endblock %}
  24.             </picture>
  25.         {% endblock %}
  26.     </div>
  27. {% endblock %}