Social Share

These social media icons are used to share page content on Social Media sites.

Markup Details
                            {{ attach_library('goizueta_theme/social-share') }}
{% apply spaceless %}
<span class="social-share--item-list">
  {% if button_setting != 'none' %}
    {% set universal_button %}
      <a class="a2a_dd addtoany_share" href="https://www.addtoany.com/share#url={{ link_url|url_encode }}&amp;title={{ link_title|url_encode }}">
        {% if button_image %}
          <img src="{{ button_image }}" alt="{{ 'Share'|t }}">
        {% endif %}
      </a>
    {% endset  %}
  {% endif %}

  <span class="a2a_kit a2a_kit_size_{{ buttons_size }} addtoany_list" data-a2a-url="{{ link_url }}" data-a2a-title="{{ link_title }}">
    {% if universal_button_placement == 'before' %}
      {{ universal_button }}
    {% endif %}

    {% if addtoany_html %}
      {{ addtoany_html|raw }}
    {% endif %}

    {% if universal_button_placement == 'after' %}
      {{ universal_button }}
    {% endif %}
  </span>
</span>
{% endapply %}