www.byjp.me/layouts/shortcodes/social.html
JP Hastings-Spital df3a344cdf Bye Meta
2025-02-02 16:16:06 +00:00

13 lines
No EOL
430 B
HTML

{{- $medium := .Get 0 -}}
{{- $details := dict -}}
{{- range site.Params.social -}}
{{- if eq .name $medium -}}
{{- $details = . -}}
{{- break -}}
{{- end -}}
{{- end -}}
{{- with $details -}}
<a href="{{ .url }}" target="_blank" rel="{{ if .rel }}{{ .rel }}{{ else }}me noopener{{ end }}" title="{{ .name | humanize }}">{{ .name | humanize }}</a>
{{- else -}}
{{ errorf "Unknown social: %s" $medium }}
{{- end -}}