gohugo-theme-ananke/layouts/partials/social-follow.html
zjrohrbach a01a415d82
Update social-follow.html
Fixed small error
2020-12-29 22:17:41 -05:00

15 lines
785 B
HTML

<!-- TODO: Add follow intents where available TODO: Revisit color and hover color -->
{{ $icon_size := "32px" }}
{{ $social_media := slice "StackOverflow" "Facebook" "Twitter" "Instagram" "YouTube" "LinkedIn" "GitHub" "GitLab" "Keybase" "Medium" "Mastodon" "Slack" "RSS" }}
{{ $dot_passthrough := . }}
{{ range $social_media }}
{{ $this_key := . }}
{{ with $dot_passthrough.Param ( . | lower ) }}
<a href="{{ . }}" target="_blank" class="link-transition {{ $this_key | lower }} link dib z-999 pt3 pt0-l mr1" title="{{ $this_key }} link" rel="noopener" aria-label="follow on {{ $this_key }}——Opens in a new window">
{{ partial (print "svg/" ($this_key | lower) ".svg") (dict "size" $icon_size) }}
{{- partial "new-window-icon.html" . -}}
</a>
{{ end }}
{{ end }}