2017-03-26 05:23:50 +00:00
|
|
|
<div class="social-icons">
|
2017-04-20 03:47:18 +00:00
|
|
|
{{ range .Site.Params.social }}
|
2023-02-18 17:12:44 +00:00
|
|
|
{{ if eq .icon_pack "fab" }}
|
|
|
|
<a href="{{ .url }}" {{ .html_attributes | safeHTMLAttr }}>
|
|
|
|
<i class="{{ .icon_pack}} fab fa-{{ .icon}}"></i>
|
|
|
|
</a>
|
|
|
|
{{ end }}
|
|
|
|
{{ if eq .icon_pack "fas" }}
|
|
|
|
<a href="{{ .url }}" {{ .html_attributes | safeHTMLAttr }}>
|
|
|
|
<i class="{{ .icon_pack}} fas fa-{{ .icon}}"></i>
|
|
|
|
</a>
|
|
|
|
{{ end }}
|
|
|
|
{{ if eq .icon_pack "ai" }}
|
|
|
|
<a href="{{ .url }}" {{ .html_attributes | safeHTMLAttr }}>
|
|
|
|
<i class="{{ .icon_pack}} ai-{{ .icon}} ai-1.9x"></i>
|
|
|
|
</a>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
2018-07-12 10:15:25 +00:00
|
|
|
</div>
|