Fix social icons with new version of FontAwesome ()

FontAwesome changed the way brand icons should be invoked. This commit
updates the social section to use the new, updated way.
This commit is contained in:
Etienne Membrives 2020-05-13 02:28:23 +02:00 committed by GitHub
parent 0493ee48a7
commit 114565af27
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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