Files
FixIt/layouts/partials/plugin/icon.html
T
2022-04-18 23:40:27 +08:00

14 lines
442 B
HTML

{{- with .Class -}}
<i class="{{ . }}"></i>&nbsp;
{{- else -}}
{{- $src := .Src -}}
{{- with .Simpleicons -}}
{{- $prefix := $.Prefix | default "lib/simple-icons/icons" | strings.TrimSuffix "/" -}}
{{- $src = printf "%v/%v.svg" $prefix . -}}
{{- end -}}
{{- if (urls.Parse $src).Host | not -}}
{{- $src = (resources.Get $src | minify).RelPermalink -}}
{{- end -}}
<i data-svg-src="{{ $src }}"></i>&nbsp;
{{- end -}}