6b66dc32d4
* Add a `rel` option to social registers Fixes #417 * Fix typo
14 lines
687 B
HTML
14 lines
687 B
HTML
{{ $socials := where (partialCached "func/socials/Get" "socials/Get") "follow" "!=" false }}
|
|
<div class="ananke-socials">
|
|
{{ range $socials }}
|
|
<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">
|
|
{{ with .icon }}
|
|
<span class="icon">{{ . }}</span>
|
|
{{ else }}
|
|
{{ .label }}
|
|
{{ end }}
|
|
{{- partial "new-window-icon.html" . -}}
|
|
</a>
|
|
{{ end }}
|
|
</div>
|