15 lines
599 B
HTML
15 lines
599 B
HTML
|
{{ $fillImage := .Scratch.Get "fillImage" }}
|
||
|
{{ 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 -}}
|
||
|
|
||
|
{{ $image = $image.Fill $fillImage }}
|
||
|
{{ $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 }}">
|