2020-11-04 08:26:58 +01:00
|
|
|
{{ $image := .Page.Resources.GetMatch (printf "*%s*" (.Get "src")) -}}
|
|
|
|
{{ $lqip := $image.Resize $.Site.Params.lqipWidth -}}
|
2021-09-08 14:18:18 +02:00
|
|
|
{{ if eq .Site.Params.options.lazySizes true -}}
|
|
|
|
<img class="img-simple img-fluid lazyload blur-up{{ with .Get "class" }} {{.}}{{ end }}" src="{{ $lqip.RelPermalink }}" data-src="{{ $image.RelPermalink }}" width="{{ $image.Width }}" height="{{ $image.Height }}" {{ with .Get "alt" }}alt="{{.}}"{{ end }}>
|
|
|
|
{{ else -}}
|
|
|
|
<img class="img-simple img-fluid{{ with .Get "class" }} {{.}}{{ end }}" src="{{ $image.RelPermalink }}" width="{{ $image.Width }}" height="{{ $image.Height }}" {{ with .Get "alt" }}alt="{{.}}"{{ end }}>
|
|
|
|
{{ end -}}
|