{{- /* A Markdown image has three components: the image description, the image destination, and optionally the image title. ![white kitten](/images/kitten.jpg "A kitten!") ------------ ------------------ --------- description destination title ------------ ------------------ --------- .Text .Destination .Title */ -}} {{- $params := .Page.Params | merge site.Params.page -}} {{- $optim := slice (dict "Process" "resize 800x webp q75" "descriptor" "800w") (dict "Process" "resize 1200x webp q75" "descriptor" "1200w") (dict "Process" "resize 1600x webp q75" "descriptor" "1600w") -}} {{- if .Title | and .Text -}} {{- $linked := ne $params.lightgallery false -}}
{{- dict "Src" .Destination "Alt" .PlainText "Title" .Title "Caption" .Text "Linked" $linked "Loading" "lazy" "Resources" .Page.Resources "OptimConfig" $optim | partial "plugin/image.html" -}}
{{- .Title | safeHTML -}}
{{- else -}} {{- $linked := (eq $params.lightgallery "force") | or ($params.lightgallery | and (ne .Title "")) -}} {{- dict "Src" .Destination "Alt" .PlainText "Title" .Title "Linked" $linked "Loading" "lazy" "Resources" .Page.Resources "OptimConfig" $optim | partial "plugin/image.html" -}} {{- end -}}