summaryrefslogtreecommitdiff
path: root/themes/LoveIt/layouts/partials/plugin/icon.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/LoveIt/layouts/partials/plugin/icon.html')
-rw-r--r--themes/LoveIt/layouts/partials/plugin/icon.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/themes/LoveIt/layouts/partials/plugin/icon.html b/themes/LoveIt/layouts/partials/plugin/icon.html
new file mode 100644
index 0000000..5bc2a11
--- /dev/null
+++ b/themes/LoveIt/layouts/partials/plugin/icon.html
@@ -0,0 +1,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 -}}