{% include _utils/common %} {% if include.social %} {% assign social = include.social %} {% else %} {% assign social = general.social %} {% endif %} <ul class=“list-inline social-buttons”>

{% for social_network in social %}
    <li>
        <a href="{{ social_network.url }}" title="{{ social_network.title }}" target="_blank">
            <i class="{{ social_network.icon }} fa-fw"></i>
        </a>
    </li>
{% endfor %}

</ul>