Olivier Navas
17bb11854e
- Addition of prerequisites files for scss modifications - Update of Fontawesome font - Update of NovecentoSans font for latin characters - Integration of Pacifico font in the theme instead of dynamically downloading from some google web site - Removal of some unuseful font files
9 lines
300 B
Twig
9 lines
300 B
Twig
<ul class="social-icons">
|
|
{% for social in site.social %}
|
|
<li>
|
|
<a href="{{ social.url }}">
|
|
{% if social.icon %}<i class="fa {% if social.brand %}fa-brands {% endif %}fa-{{ social.icon }}"></i>{% endif %}
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|