mirror of
https://git.adityakumar.xyz/hugo-theme-introduction.git
synced 2024-11-09 23:09:47 +00:00
114565af27
FontAwesome changed the way brand icons should be invoked. This commit updates the social section to use the new, updated way.
7 lines
215 B
HTML
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>
|