1{{- $src := .Get "src" -}}
2{{- $base := site.Params.r2BaseURL -}}
3{{- $full := printf "%s/%s" $base $src -}}
4{{- $thumb := $full -}}
5{{- if site.Params.r2Transforms -}}
6 {{- $thumb = printf "%s/%s/%s" $base site.Params.r2Thumb $src -}}
7{{- end -}}
8<figure class="photo-grid__item">
9 <a href="{{ $full }}">
10 <img src="{{ $thumb }}" alt="" loading="lazy" decoding="async">
11 </a>
12</figure>