hugo-theme-zzo/layouts/partials/footer/links-social.html

10 lines
352 B
HTML
Raw Normal View History

2019-11-04 13:09:44 +00:00
<label class="label p2">{{ i18n "footer-social" }}</label>
<div class="social">
{{ range $name, $path := $.Param "socialOptions" }}
{{ if $path }}
<a href="{{ $path | safeURL }}" title="{{ $name }}" aria-label="{{ $name }}">
{{ partial (print "svgs/social/" $name ".svg") (dict "width" 32 "height" 32) }}
</a>
{{ end }}
{{ end }}
</div>