custom/plugins/WoodRepair/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_inner_container %}
  3.     {% set social = {
  4.         'translated': {
  5.             facebookUrl: "zentheme.stratus.content.socialFacebookUrl"|trans({"%placeholder%": config('zenitPlatformStratus.config.socialFacebookUrl')}),
  6.             youtubeUrl: "zentheme.stratus.content.socialYoutubeUrl"|trans({"%placeholder%": config('zenitPlatformStratus.config.socialYoutubeUrl')}),
  7.             instagramUrl: "zentheme.stratus.content.socialInstagramUrl"|trans({"%placeholder%": config('zenitPlatformStratus.config.socialInstagramUrl')}),
  8.             linkedInUrl: "zentheme.stratus.content.socialLinkedInUrl"|trans({"%placeholder%": config('zenitPlatformStratus.config.socialLinkedInUrl')}),
  9.         }
  10.     } %}
  11.     <div class="custom-prefooter-container">
  12.         <div class="custom-prefooter-image">
  13.             {% set prefooterImage = theme_config('sw-prefooter-image') %}
  14.             <img src={{ prefooterImage }} alt="">
  15.         </div>
  16.         <div class="custom-prefooter-content">
  17.             <h2 class="custom-prefooter-title">{{ "prefooter.title"|trans }}</h2>
  18.             <div class="custom-prefooter-container--icons">
  19.                 <a href="{{ social.translated.youtubeUrl }}" target="_blank" class="custom-prefooter-icon">
  20.                     {% sw_icon 'ic-youtube' style { 'pack': 'woodrepair' } %}
  21.                 </a>
  22.                 <a href="{{ social.translated.instagramUrl }}" target="_blank" class="custom-prefooter-icon">
  23.                     {% sw_icon 'ic-instagram' style { 'pack': 'woodrepair' } %}
  24.                 </a>
  25.                 <a href="{{ social.translated.facebookUrl }}" target="_blank" class="custom-prefooter-icon">
  26.                     {% sw_icon 'ic-facebook' style { 'pack': 'woodrepair' } %}
  27.                 </a>
  28.                 <a href="{{ social.translated.linkedInUrl }}" target="_blank" class="custom-prefooter-icon">
  29.                     {% sw_icon 'ic-linkedin' style { 'pack': 'woodrepair'} %}
  30.                 </a>
  31.             </div>
  32.         </div>
  33.     </div>
  34.     {{ parent() }}
  35.     {% block layout_footer_bottom %}
  36.     {% endblock %}
  37. {% endblock %}