summaryrefslogtreecommitdiff
path: root/themes/CodeIT/layouts/partials/plugin/image.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/CodeIT/layouts/partials/plugin/image.html')
-rw-r--r--themes/CodeIT/layouts/partials/plugin/image.html38
1 files changed, 0 insertions, 38 deletions
diff --git a/themes/CodeIT/layouts/partials/plugin/image.html b/themes/CodeIT/layouts/partials/plugin/image.html
deleted file mode 100644
index 84a61b3..0000000
--- a/themes/CodeIT/layouts/partials/plugin/image.html
+++ /dev/null
@@ -1,38 +0,0 @@
-{{- /* lazysizes and lightgallery.js */ -}}
-{{- $src := .Src -}}
-{{- with dict "Path" .Src "Resources" .Resources | partial "function/resource.html" -}}
- {{- $src = .RelPermalink -}}
-{{- end -}}
-
-{{- $small := .SrcSmall | default $src -}}
-{{- with dict "Path" .SrcSmall "Resources" .Resources | partial "function/resource.html" -}}
- {{- $small = .RelPermalink -}}
-{{- end -}}
-
-{{- $large := .SrcLarge | default $src -}}
-{{- with dict "Path" .SrcLarge "Resources" .Resources | partial "function/resource.html" -}}
- {{- $large = .RelPermalink -}}
-{{- end -}}
-
-{{- $alt := .Alt | default $src -}}
-{{- $loading := resources.Get "svg/loading.svg" | minify -}}
-{{- if .Linked -}}
- <a class="lightgallery" href="{{ $large | safeURL }}" title="{{ .Title | default $alt }}" data-thumbnail="{{ $small | safeURL }}"{{ with .Caption }} data-sub-html="<h2>{{ . }}</h2>{{ with $.Title }}<p>{{ . }}</p>{{ end }}"{{ end }}{{ with .Rel }} rel="{{ . }}"{{ end }}>
- <img
- class="lazyload{{ with .Class }} {{ . }}{{ end }}"
- src="{{ $loading.RelPermalink }}"
- data-src="{{ .Src | safeURL }}"
- data-srcset="{{ $small | safeURL }}, {{ .Src | safeURL }} 1.5x, {{ $large | safeURL }} 2x"
- data-sizes="auto"
- alt="{{ $alt }}"{{ with .Height }} height="{{ . }}"{{ end }}{{ with .Width }} width="{{ . }}"{{ end }} />
- </a>
-{{- else -}}
- <img
- class="lazyload{{ with .Class }} {{ . }}{{ end }}"
- src="{{ $loading.RelPermalink }}"
- data-src="{{ .Src | safeURL }}"
- data-srcset="{{ $small | safeURL }}, {{ .Src | safeURL }} 1.5x, {{ $large | safeURL }} 2x"
- data-sizes="auto"
- alt="{{ $alt }}"
- title="{{ .Title | default $alt }}"{{ with .Height }} height="{{ . }}"{{ end }}{{ with .Width }} width="{{ . }}"{{ end }} />
-{{- end -}}