{{- $url := .Destination | safeURL -}}
{{- $img := .Page.Resources.GetMatch .Destination -}}
{{- if and (not $img) .Page.File -}}
{{ $path := path.Join .Page.File.Dir .Destination }}
{{- $img = resources.Get $path -}}
{{- end -}}
{{- if and (not $img) .Page.File -}}
{{- $img = resources.Get .Destination -}}
{{- end -}}
{{- with $img -}}
{{ if eq .MediaType.SubType "svg" }}
{{ else }}
{{ end }}
{{ $.Text | safeHTML }}
{{- else -}}
Unable to find image {{ $url }}!
{{- end -}}