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

8 lines
161 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 }}">
2018-07-12 10:15:25 +00:00
<i class="fab fa-{{ .icon}}"></i>
2017-04-20 03:47:18 +00:00
</a>
{{ end }}
2018-07-12 10:15:25 +00:00
</div>