hugo-devresume-theme/layouts/partials/social.html

16 lines
744 B
HTML
Raw Normal View History

2019-11-06 16:18:55 +00:00
2019-11-03 18:18:08 +00:00
<div class="resume-footer text-center">
<ul class="resume-social-list list-inline mx-auto mb-0 d-inline-block text-muted">
{{ range .Site.Params.social.list }}
<li class="list-inline-item mb-lg-0 mr-3">
2019-11-04 01:16:38 +00:00
<a class="resume-link" href="{{ .url }}" target="_blank">
<i class="{{ .icon }} fa-2x mr-2" data-fa-transform="down-4"></i>
2019-11-03 18:18:08 +00:00
<span class="d-none d-lg-inline-block text-muted">{{ .title }}</span>
</a>
</li>
{{ end }}
</ul>
</div><!--//resume-footer-->