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

8 lines
211 B
HTML
Raw Normal View History

<div class="social-icons">
2017-04-20 03:47:18 +00:00
{{ range .Site.Params.social }}
<a href="{{ .url }}" {{ .html_attributes | safeHTMLAttr }}>
<i class="{{ .icon_pack}} fa-{{ .icon}}"></i>
2017-04-20 03:47:18 +00:00
</a>
{{ end }}
2018-07-12 10:15:25 +00:00
</div>