grav-theme-libretic/templates/partials/social.html.twig
Olivier Navas 17bb11854e - Several modifications of template files for Libretic's web site
- 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
2022-05-14 19:43:00 +02:00

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>