mirror of
https://git.adityakumar.xyz/hugo-theme-introduction.git
synced 2024-11-21 19:42:52 +00:00
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.
This commit is contained in:
parent
0493ee48a7
commit
114565af27
1 changed files with 1 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue