hugo-theme-introduction/layouts/partials/home/social.html
Etienne Membrives 114565af27
Fix social icons with new version of FontAwesome (#203)
FontAwesome changed the way brand icons should be invoked. This commit
updates the social section to use the new, updated way.
2020-05-12 20:28:23 -04:00

7 lines
215 B
HTML

<div class="social-icons">
{{ range .Site.Params.social }}
<a href="{{ .url }}" {{ .html_attributes | safeHTMLAttr }}>
<i class="{{ .icon_pack}} fab fa-{{ .icon}}"></i>
</a>
{{ end }}
</div>