1{{- $src := .Get "src" -}}
2{{- $alt := .Get "alt" | default "" -}}
3{{- $base := site.Params.r2BaseURL -}}
4{{- $full := printf "%s/%s" $base $src -}}
5{{- $thumb := $full -}}
6{{- if site.Params.r2Transforms -}}
7 {{- $thumb = printf "%s/cdn-cgi/image/width=600,format=webp/%s" $base $src -}}
8{{- end -}}
9<img src="{{ $thumb }}" data-full="{{ $full }}" alt="{{ $alt }}" loading="lazy" decoding="async">