2020-05-28 11:05:37 +02:00
|
|
|
{{- with .Class -}}
|
2022-05-04 21:59:57 +02:00
|
|
|
<i class="{{ . }}" aria-hidden="true"></i>
|
2020-04-24 13:04:37 +02:00
|
|
|
{{- else -}}
|
2020-05-28 11:05:37 +02:00
|
|
|
{{- $src := .Src -}}
|
|
|
|
{{- with .Simpleicons -}}
|
|
|
|
{{- $prefix := $.Prefix | default "lib/simple-icons/icons" | strings.TrimSuffix "/" -}}
|
2020-05-18 10:10:24 +02:00
|
|
|
{{- $src = printf "%v/%v.svg" $prefix . -}}
|
2020-02-17 14:02:27 +01:00
|
|
|
{{- end -}}
|
2020-04-24 13:04:37 +02:00
|
|
|
{{- if (urls.Parse $src).Host | not -}}
|
|
|
|
{{- $src = (resources.Get $src | minify).RelPermalink -}}
|
2020-03-08 14:02:21 +01:00
|
|
|
{{- end -}}
|
2022-05-04 21:59:57 +02:00
|
|
|
<i data-svg-src="{{ $src }}" aria-hidden="true"></i>
|
2020-02-17 14:02:27 +01:00
|
|
|
{{- end -}}
|