custom/plugins/MDR_Theme/src/Resources/views/storefront/layout/footer/logos/social.html.twig line 1

Open in your IDE?
  1. {% block nxs_footer_social_media_logos %}
  2.     <div class="footer-logos social-logos">
  3.         <a href="{{ 'footer.socialLinks.facebook.link'|trans }}" target="_blank"
  4.            title="{{ 'footer.socialLinks.facebook.title'|trans }}">
  5.             {% sw_icon 'fa-facebook-f' style {'pack':'brands', 'namespace': 'MDR_Theme'} %}
  6.         </a>
  7.         <a href="{{ 'footer.socialLinks.pinterest.link'|trans }}" target="_blank"
  8.            title="{{ 'footer.socialLinks.pinterest.title'|trans }}">
  9.             {% sw_icon 'fa-pinterest' style {'pack':'brands', 'namespace': 'MDR_Theme'} %}
  10.         </a>
  11.         <a href="{{ 'footer.socialLinks.instagram.link'|trans }}" target="_blank"
  12.            title="{{ 'footer.socialLinks.instagram.title'|trans }}">
  13.             {% sw_icon 'fa-instagram' style {'pack':'brands', 'namespace': 'MDR_Theme'} %}
  14.         </a>
  15.         <a href="{{ 'footer.socialLinks.youtube.link'|trans }}" target="_blank"
  16.            title="{{ 'footer.socialLinks.youtube.title'|trans }}">
  17.             {% sw_icon 'fa-youtube' style {'pack':'brands', 'namespace': 'MDR_Theme'} %}
  18.         </a>
  19.     </div>
  20. {% endblock %}