summaryrefslogtreecommitdiff
path: root/themes/CodeIT/layouts/partials/plugin/icon.html
blob: 5bc2a11f9e7ffee4cfda9c1ac763b4e004803379 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{- with .Class -}}
    <i class="{{ . }}"></i>
{{- 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>
{{- end -}}