Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/rmaguiar/hugo-theme-color-your-world.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/_default/_markup/render-image.html')
-rw-r--r--layouts/_default/_markup/render-image.html50
1 files changed, 8 insertions, 42 deletions
diff --git a/layouts/_default/_markup/render-image.html b/layouts/_default/_markup/render-image.html
index b58a9a2..f6c7362 100644
--- a/layouts/_default/_markup/render-image.html
+++ b/layouts/_default/_markup/render-image.html
@@ -37,28 +37,15 @@
{{ end }}
<img
- class="lazyload {{ $class }}"
+ {{ with $class }}class="{{ . }}"{{ end }}
loading="lazy"
- data-srcset='{{ delimit $outputSet ", " }}'
+ srcset='{{ delimit $outputSet ", " }}'
src="{{ $encodedPlaceholder }}"
- data-src="{{ (.Resize $mediumRes).RelPermalink }}"
width="{{ (.Resize $mediumRes).Width }}"
height="{{ (.Resize $mediumRes).Height }}"
{{ with $altText }}alt="{{ . }}"{{ end }}
/>
- <noscript>
- <img
- {{ with $class }}class="{{ . }}"{{ end }}
- loading="lazy"
- srcset='{{ delimit $outputSet ", " }}'
- src="{{ $encodedPlaceholder }}"
- width="{{ (.Resize $mediumRes).Width }}"
- height="{{ (.Resize $mediumRes).Height }}"
- {{ with $altText }}alt="{{ . }}"{{ end }}
- />
- </noscript>
-
{{ else }}
<!--
@@ -70,47 +57,26 @@
{{ $encodedPlaceholder := (printf "data:image/png;base64,%s" (((.Resize (printf "%vx %s" .Width "png")) | images.Filter (images.Contrast -100)).Content | base64Encode)) | safeURL }}
<img
- class="lazyload {{ $class }}"
+ {{ with $class }}class="{{ . }}"{{ end }}
loading="lazy"
- src="{{ $encodedPlaceholder }}"
- data-src="{{ $processed.RelPermalink }}"
+ src="{{ $processed.RelPermalink }}"
width="{{ .Width }}"
height="{{ .Height }}"
{{ with $altText }}alt="{{ . }}"{{ end }}
/>
- <noscript>
- <img
- {{ with $class }}class="{{ . }}"{{ end }}
- loading="lazy"
- src="{{ $processed.RelPermalink }}"
- width="{{ .Width }}"
- height="{{ .Height }}"
- {{ with $altText }}alt="{{ . }}"{{ end }}
- />
- </noscript>
-
{{ end }}
{{ else }}
<!-- If local file isn't found, assume it's a remote file -->
{{ with (.Destination | safeURL) }}
+
<img
- class="lazyload {{ $class }}"
+ {{ with $class }}class="{{ . }}"{{ end }}
loading="lazy"
- src="{{ $encodedPixel }}"
- data-src="{{ . }}"
+ src="{{ . }}"
{{ with $altText }}alt="{{ . }}"{{ end }}
/>
-
- <noscript>
- <img
- {{ with $class }}class="{{ . }}"{{ end }}
- loading="lazy"
- src="{{ . }}"
- {{ with $altText }}alt="{{ . }}"{{ end }}
- />
- </noscript>
-
+
{{ end }}
{{ end }}