{{ $src := .Destination }} {{ $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 := .Resize "800x webp" | fingerprint }} {{ $alt }} {{ end }} {{ end }} {{ else }} {{ with resources.Get $src }} {{ if eq .MediaType.SubType "svg" }} {{ $alt }} {{ else }} {{ $resized := .Resize "800x webp" }} {{ $alt }} {{ end }} {{ end }} {{ end }}