2022-05-06 17:26:54 +02:00
|
|
|
{{ $socials := where (partialCached "func/socials/Get" "socials/Get") "follow" "!=" false }}
|
2021-12-02 21:22:18 +01:00
|
|
|
<div class="ananke-socials">
|
|
|
|
{{ range $socials }}
|
2022-12-02 20:22:06 +01:00
|
|
|
<a href="{{ .url }}" target="_blank" {{ with .rel }} rel="{{ . }}" {{ end }} class="{{ .name }} ananke-social-link link-transition stackoverflow link dib z-999 pt3 pt0-l {{ cond (eq $.Site.Language.LanguageDirection "rtl") "ml1" "mr1" }}" title="{{ .label }} link" rel="noopener" aria-label="follow on {{ .label }}——Opens in a new window">
|
2021-12-02 21:22:18 +01:00
|
|
|
{{ with .icon }}
|
|
|
|
<span class="icon">{{ . }}</span>
|
|
|
|
{{ else }}
|
|
|
|
{{ .label }}
|
|
|
|
{{ end }}
|
|
|
|
{{- partial "new-window-icon.html" . -}}
|
|
|
|
</a>
|
|
|
|
{{ end }}
|
2022-04-21 20:17:49 +02:00
|
|
|
</div>
|