blowfish/layouts/shortcodes/sociallink.html
2024-05-18 22:14:33 +05:30

24 lines
818 B
HTML

{{ $name := .Get "name" }}
{{ if not $name }} {{ errorf "Sociallink shortcode: name param not found" }} {{ end }}
{{ $url := false }}
{{ with .Site.Author.links }}
{{ range $links := . }}
{{ range $s_name, $s_url := $links }}
{{ if eq $s_name $name }} {{ $url = $s_url }} {{ end }}
{{ end }}
{{ if $url }} {{ break }} {{ end }}
{{ end }}
{{ end }}
{{ if $url }}
<a
href="{{ $url | safeURL }}"
target="_blank"
aria-label="{{ $name | title }}"
rel="me noopener noreferrer"
>
{{ if .Get "showIcon" }}<span class="inline-block" style="vertical-align:text-top;" >{{ partial "icon.html" $name }} </span>{{ end }}
{{ .Inner | markdownify }}
</a>
{{ else }}
{{ errorf "Sociallink shortcode: link not found" $name }}
{{ end }}