{{ $w := .w | default 480 }}
{{ $h := .h | default 180 }}
{{ $p := .p }}
{{ $class := .class | default "ml-3" }}
{{ $image := ($p.Resources.ByType "image").GetMatch "**featured*" }}
{{ with $image }}
{{ $image := .Fill (printf "%dx%d" $w $h ) }}
{{ with $image.Params.byline }}
{{ . | html }}
{{ end }}
{{ else }}
{{ if $p.Params.youtubeID }}
{{ $image := printf "https://i.ytimg.com/vi/%s/mqdefault.jpg" $p.Params.youtubeID }}
{{ with $p.Params.byline }}
{{ . | html }}
{{ end }}
{{ end }}
{{ end }}