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