Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/vickylaixy/hugo-theme-introduction.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEtienne Membrives <etienne@membrives.fr>2020-05-13 03:28:23 +0300
committerGitHub <noreply@github.com>2020-05-13 03:28:23 +0300
commit114565af27dc1b87e55228882612d8c5b5bd6e1a (patch)
treef9c56354134d160bc92b33ce90ef55955d0fb8e3 /layouts
parent0493ee48a7e52581c4fff2f0cb17741d7a1fdcd5 (diff)
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.
Diffstat (limited to 'layouts')
-rw-r--r--layouts/partials/home/social.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/home/social.html b/layouts/partials/home/social.html
index 34a97f1..ff90886 100644
--- a/layouts/partials/home/social.html
+++ b/layouts/partials/home/social.html
@@ -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>