summaryrefslogtreecommitdiff
path: root/themes/LoveIt/layouts/partials/plugin/script.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/LoveIt/layouts/partials/plugin/script.html')
-rw-r--r--themes/LoveIt/layouts/partials/plugin/script.html25
1 files changed, 0 insertions, 25 deletions
diff --git a/themes/LoveIt/layouts/partials/plugin/script.html b/themes/LoveIt/layouts/partials/plugin/script.html
deleted file mode 100644
index e12e74e..0000000
--- a/themes/LoveIt/layouts/partials/plugin/script.html
+++ /dev/null
@@ -1,25 +0,0 @@
-{{- if .Content -}}
- <script type="text/javascript">
- {{- .Content | safeJS -}}
- </script>
-{{- else if strings.HasPrefix .Source "<script" -}}
- {{- safeHTML .Source -}}
-{{- else -}}
- {{- $src := .Source -}}
- {{- $integrity := .Integrity -}}
- {{- if (urls.Parse $src).Host | not -}}
- {{- $resource := resources.Get $src -}}
- {{- with .Template -}}
- {{- $resource = $resource | resources.ExecuteAsTemplate . $.Context -}}
- {{- end -}}
- {{- if .Minify -}}
- {{- $resource = $resource | minify -}}
- {{- end -}}
- {{- with .Fingerprint -}}
- {{- $resource = $resource | fingerprint . -}}
- {{- $integrity = $resource.Data.Integrity -}}
- {{- end -}}
- {{- $src = $resource.RelPermalink -}}
- {{- end -}}
- <script type="text/javascript" src="{{ $src }}"{{ if .Crossorigin }} crossorigin="anonymous"{{ end }}{{ with $integrity }} integrity="{{ . }}"{{ end }}{{ if .Async }} async{{ end }}{{ if .Defer }} defer{{ end }}{{ with .Attr }} {{ . | safeHTMLAttr }}{{ end }}></script>
-{{- end -}}