{{ $src := .src }} {{ $alt := .Text | default "image" }} {{ $title := .Title }} {{ $isRemote := strings.HasPrefix $src "http" }} {{ if $isRemote }} {{ with resources.GetRemote $src }} {{ if eq .MediaType.SubType "svg" }} {{ $alt }} {{ else }} {{ $webp := .Fit "300x300 webp" | fingerprint }} {{ $alt }} {{ end }} {{ end }} {{ else }} {{ with resources.Get $src }} {{ if eq .MediaType.SubType "svg" }} {{ $alt }} {{ else }} {{ $resized := .Fit "300x300 webp" }} {{ $alt }} {{ end }} {{ end }} {{ end }}