Shopify social media code snippet

· konordo
Shopify social media code snippet
      {%- assign social_accounts = 'facebook, twitter, pinterest, instagram, snapchat, tumblr, youtube, vimeo, linkedin,' | split: ', ' -%}
      <div class="social-sharing d-flex align-items-center">
            {% include 'social-links' %}
            
        {% for social in social_accounts %}
          {%- assign social_handle = social | handleize -%}
          {% capture social_link %}social_{{ social_handle }}_link{% endcapture %}
          {% capture social_icon %}icon-{{ social_handle }}{% endcapture %}
 
          {% if settings[social_link] != blank %}
              <a class="sm-icons pr-1" href="{{ settings[social_link] }}" title="{{ 'layout.footer.social_platform' | t: name: shop.name, platform: social }}">                
                <i data-feather="{{ social }}"></i>
              </a>
          {% endif %}
        {% endfor %}
      </div>