aboutsummaryrefslogtreecommitdiffstats
path: root/code/frontpage/layouts/partials/content/card-image.html
diff options
context:
space:
mode:
Diffstat (limited to 'code/frontpage/layouts/partials/content/card-image.html')
-rw-r--r--code/frontpage/layouts/partials/content/card-image.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/code/frontpage/layouts/partials/content/card-image.html b/code/frontpage/layouts/partials/content/card-image.html
new file mode 100644
index 0000000..51a5e51
--- /dev/null
+++ b/code/frontpage/layouts/partials/content/card-image.html
@@ -0,0 +1,17 @@
+{{ $fillImage := .Scratch.Get "fillImageCard" }}
+{{ if not $fillImage -}}
+{{ $fillImage = site.Params.fillImage }}
+{{ end -}}
+
+{{ $image := .Resources.GetMatch (printf "**%s" (index .Params.images 0)) }}
+{{ if not $image -}}
+{{ $image = resources.Get (printf "%s%s" "images/" site.Params.defaultImage) }}
+{{ end -}}
+
+{{ $webp := printf "%s%s" $fillImage " webp" }}
+{{/* {{ $image = $image.Resize $webp}} */}}
+
+{{ $lqip := $image.Resize site.Params.lqipWidth -}}
+
+<img class="card-img-top img-fluid lazyload blur-up" src="{{ $lqip.Permalink }}" data-src="{{ $image.Permalink }}"
+ width="{{ $image.Width }}" height="{{ $image.Height }}" alt="{{ .Title }}"> \ No newline at end of file