custom/plugins/WebLabels/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.     {% block layout_footer_navigation_columns %}
  3.     {{ parent() }}
  4.         <div class="col-md-4 footer-column js-footer-column">
  5.                 <div class="footer-column-headline footer-headline  js-collapse-footer-column-trigger"
  6.                      data-target="#collapseFooterPayment"
  7.                      aria-expanded="true"
  8.                      aria-controls="collapseFooterPayment">
  9.                     {{ "wlcustom.footer.paymentHead"|trans }}
  10.                         <div class="footer-column-toggle">
  11.                             <span class="footer-plus-icon">
  12.                                 {% sw_icon 'plus' %}
  13.                             </span>
  14.                             <span class="footer-minus-icon">
  15.                                 {% sw_icon 'minus' %}
  16.                             </span>
  17.                         </div>
  18.                 </div>
  19.                 <div id="collapseFooterPayment"
  20.                      class="footer-column-content collapse js-footer-column-content footer-contact"
  21.                      aria-labelledby="collapseFooterPaymentTitle">
  22.                     <div class="footer-column-content-inner">
  23.                         <ul class="zahlungen-versand">
  24.                             {{ "wlcustom.footer.paymentContent"|trans|raw }}
  25.                         </ul>
  26.                     </div>
  27.                 </div>
  28. </div>
  29. <div class="col-md-4 footer-column js-footer-column">
  30.                 <div class="footer-column-headline footer-headline  js-collapse-footer-column-trigger"
  31.                      data-target="#collapseFooterSocials"
  32.                      aria-expanded="true"
  33.                      aria-controls="collapseFooterSocials">
  34.                     {{ "wlcustom.footer.socialHead"|trans }}
  35.                         <div class="footer-column-toggle">
  36.                             <span class="footer-plus-icon">
  37.                                 {% sw_icon 'plus' %}
  38.                             </span>
  39.                             <span class="footer-minus-icon">
  40.                                 {% sw_icon 'minus' %}
  41.                             </span>
  42.                         </div>
  43.                 </div>
  44.                 <div id="collapseFooterSocials"
  45.                      class="footer-column-content collapse js-footer-column-content footer-contact"
  46.                      aria-labelledby="collapseFooterSocials">
  47.                     <div class="footer-column-content-inner">
  48.                      <ul class="zahlungen-versand">
  49.                        <!--  {{ "wlcustom.footer.socialContent"|trans|raw }} -->
  50.                         <div class="socials">
  51.                             <a href="https://www.facebook.com/frischehelden.shop" target="_blank">                                
  52.                                 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="#ffffff" width="45">
  53.                                    <path d="M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z"/>
  54.                                 </svg>
  55.                             </a>
  56.                             <a href="https://www.instagram.com/frischehelden_shop/"> 
  57.                                 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" fill="#ffffff" width="45">
  58.                                     <path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"/>
  59.                                 </svg>
  60.                             </a>
  61.                             
  62.                         </div>
  63.                       </ul>
  64.                       
  65.                     </div>
  66.             
  67.   </div>
  68.     {% endblock %}
  69.     {% block layout_footer_navigation_hotline %}
  70.     {% endblock %}
  71.     {% block layout_footer_payment_shipping_logos %}
  72.     {% endblock %}
  73.     {% block layout_footer_bottom %}
  74.     {% endblock %}