mirror of https://github.com/jpanther/congo.git
7 lines
330 B
HTML
7 lines
330 B
HTML
|
{{ $img := .img }}
|
||
|
{{ $alt := .alt }}
|
||
|
{{ $class := .class }}
|
||
|
{{ $lazy := $.Page.Site.Params.enableImageLazyLoading | default true }}
|
||
|
{{ $webp := $.Page.Site.Params.enableImageWebp | default true }}
|
||
|
{{ $lqip := false }}
|
||
|
{{ partial "picture.html" (dict "img" $img "alt" $alt "class" $class "lazy" $lazy "webp" $webp "lqip" $lqip) }}
|