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

{% for social_network in social %}
    <li class="list-inline-item">
        <a class="btn-floating btn-lg btn-tw" href="{{ social_network.url }}" title="{{ social_network.title }}" target="_blank">
            <i class="fab {{ social_network.icon }}"></i>
        </a>
    </li>
{% endfor %}

</ul>