custom/plugins/FourtwosixThemeExtension/src/Resources/views/storefront/layout/footer/footer.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/layout/footer/footer.html.twig' %}
  2. {# @fourtwosix-edit: removed payment methods logo #}
  3. {% block layout_footer_payment_logos %}
  4. {% endblock %}
  5. {# @fourtwosix-edit: end #}
  6. {% block zen_layout_footer_bottom_row %}
  7.     <div class="footer-bottom-row row align-items-center justify-content-between">
  8.         {% block zen_layout_footer_bottom_left %}
  9.             <div class="footer-bottom-left col-12 col-md-6  col-lg-8 ">
  10.                 {% block layout_footer_copyright %}
  11.                     {# @fourtwosix-edit: This was changed #}
  12.                     <div class="footer-copyright text-left">
  13.                         {{ 'zentheme.general.copyright'|trans({
  14.                             '%year%': 'now'|date('Y'),
  15.                             '%shopname%': config('core.basicInformation.shopName'),
  16.                             '%love%': '<span class="icon icon-heart icon-xs"><svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M16 29.104l-1.938-1.75c-6.875-6.25-11.375-10.313-11.375-15.375 0-4.125 3.188-7.313 7.313-7.313 2.313 0 4.563 1.125 6 2.813 1.438-1.688 3.688-2.813 6-2.813 4.125 0 7.313 3.188 7.313 7.313 0 5.063-4.5 9.188-11.375 15.438z"></path></svg></span>',
  17.                             '%href%': 'https://www.426.agency',
  18.                             '%title%': '426 - Your Digital Upgrade',
  19.                             '%name%': '426 - Your Digital Upgrade'
  20.                         })|raw }}
  21.                         {# @fourtwosix-edit: end #}
  22.                     </div>
  23.                     {% block layout_footer_service_menu %}
  24.                         <div class="text-left">
  25.                             {% if theme_config('zen-footer-bottom-service-navigation') is not same as (false) and page.header.serviceMenu.elements is not empty %}
  26.                                 {{ block('layout_footer_service_menu_content') }}
  27.                             {% else %}
  28.                                 {{ block('layout_footer_vat') }}
  29.                             {% endif %}
  30.                         </div>
  31.                     {% endblock %}
  32.                 {% endblock %}
  33.             </div>
  34.         {% endblock %}
  35.         {% block zen_layout_footer_bottom_right %}
  36.             <div class="footer-bottom-right col-12 col-md-6 col-lg-4 justify-content-around">
  37.                 <div class="row">
  38.                     {% if context.saleschannel.languageId  == config('FourtwosixThemeExtension.config.languageEn') %}
  39.                         <div class="offset-xl-6 col-6 col-xl-5">
  40.                             <img src="https://www.trendfliesen.com/media/52/e5/2d/1684323683/SUED_GB.svg"
  41.                                  class="w-100 company-from-suedtirol-footer" alt="">
  42.                         </div>
  43.                     {% elseif context.saleschannel.languageId  == config('FourtwosixThemeExtension.config.languageDe') %}
  44.                         <div class="offset-xl-6 col-6 col-xl-5">
  45.                             <img src="https://www.trendfliesen.com/media/50/2e/36/1684323683/SUED_DE.svg"
  46.                                  class="w-100 company-from-suedtirol-footer" alt="">
  47.                         </div>
  48.                     {% endif %}
  49.                 </div>
  50.             </div>
  51.         {% endblock %}
  52.     </div>
  53. {% endblock %}