12 lines
345 B
HTML
12 lines
345 B
HTML
|
{{ with .Site.Params.social }}
|
||
|
<ul id="social">
|
||
|
{{ range sort . "weight" }}
|
||
|
<li class="social-element">
|
||
|
<a href="{{ safeURL .url }}" rel="me" aria-label="{{ .name }}" title="{{ .name }}">
|
||
|
<img class="social-icon" src="{{ .Site.BaseURL }}/svg/{{ .icon }}.svg" alt="{{ .name }}" aria-hidden="true">
|
||
|
</a>
|
||
|
</li>
|
||
|
{{ end }}
|
||
|
</ul>
|
||
|
{{ end }}
|