hugo-theme-introduction/layouts/partials/home/social.html

20 lines
653 B
HTML
Raw Normal View History

<div class="social-icons">
2017-04-20 03:47:18 +00:00
{{ range .Site.Params.social }}
{{ 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>