custom/plugins/WosoThemeAngelshops/src/Resources/views/storefront/base.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/base.html.twig' %}
  2.         {% block base_footer %}
  3.             <footer class="footer-main">
  4.                     {% block base_footer_line %}
  5.                         {% if theme_config('woso-content-tel') !='' and theme_config('woso-content-fax') !='' and theme_config('woso-content-mail') !='' %}                        
  6.                         <div class="woso-footer-brline">
  7.                             <div class="woso-footer-brline-container">
  8.                                 <div class="woso-footer-brline-list">
  9.                                     <div class="woso-footer-brline-item"><sw-icon name="default-action-circle-download" color="#1abc9c"></sw-icon> 
  10.                                                     <span class="woso-footer-brline-item-icon">
  11.                                                         {% sw_icon 'phone' %}
  12.                                                     </span>
  13.                                         <span class="woso-footer-brline-item-text">{{ theme_config('woso-content-tel') }}</span></div>
  14.                                     <div class="woso-footer-brline-item"><sw-icon name="default-action-circle-download" color="#1abc9c"></sw-icon> 
  15.                                                     <span class="woso-footer-brline-item-icon">
  16.                                                         {% sw_icon 'telefax' %}
  17.                                                     </span>
  18.                                         <span class="woso-footer-brline-item-text">{{ theme_config('woso-content-fax') }}</span></div>
  19.                                     <div class="woso-footer-brline-item">
  20.                                                     <span class="woso-footer-brline-item-icon">
  21.                                                         {% sw_icon 'envelope' %}
  22.                                                     </span>
  23.                                         <span class="woso-footer-brline-item-text">{{ theme_config('woso-content-mail') }}</span></div>
  24.                                 </div>
  25.                             </div>
  26.                         </div>
  27.                         {% endif %}
  28.                     {% endblock %}
  29.                 {% block base_footer_inner %}
  30.                     <div class="container">
  31.                         {% sw_include '@Storefront/storefront/layout/footer/footer.html.twig' %}
  32.                     </div>
  33.                 {% endblock %}
  34.             </footer>
  35.         {% endblock %}