17 lines
618 B
HTML
17 lines
618 B
HTML
|
{{ with .Site.Params.social }}
|
||
|
<ul>
|
||
|
{{ range sort . "weight" }}
|
||
|
{{ if .icon }}
|
||
|
<li>
|
||
|
<a href="{{ .url | safeURL }}" aria-label="{{ .name }}" {{ if .rel }}rel="{{ .rel }}"{{ end }} {{ if .target }}target="{{ .target }}"{{ end }} {{ if .type }}type="{{ .type }}"{{ end }}>
|
||
|
<i class="{{ .icon }}" aria-hidden="true"></i>
|
||
|
</a>
|
||
|
</li>
|
||
|
{{ else }}
|
||
|
<li>
|
||
|
<a href="{{ .url | safeURL }}" aria-label="{{ .name }}" {{ if .rel }}rel="{{ .rel }}"{{ end }} {{ if .target }}target="{{ .target }}"{{ end }}>{{ .name }}</a>
|
||
|
</li>
|
||
|
{{ end }}
|
||
|
{{ end }}
|
||
|
</ul>
|
||
|
{{ end }}
|