{{ $original := .Page.Resources.GetMatch (.Get "src") }}
{{ $options := default "1000x" (.Get "options") }}
{{ .Scratch.Set "image" ($original.Resize $options) }}
{{ define "img" }}
{{ $image := .Scratch.Get "image" }}
{{ end }}
{{ if .Inner }}
{{ else }}
{{ template "img" . }}
{{ end }}