mirror of
https://git.adityakumar.xyz/hugo-theme-introduction.git
synced 2025-02-06 06:50:01 +00:00
![Etienne Membrives](/assets/img/avatar_default.png)
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>
|