c7b9901e01
* Start of work * Refactor social service logic Update README Fixes #422 * Add URL to contributors instuctions * Add tiktok
13 lines
554 B
HTML
13 lines
554 B
HTML
{{ $socials := partialCached "func/socials/Get" "socials/Get" }}
|
|
<div class="ananke-socials">
|
|
{{ range $socials }}
|
|
<a href="{{ .url }}" target="_blank" class="{{ .name }} ananke-social-link link-transition stackoverflow link dib z-999 pt3 pt0-l 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> |