21 lines
750 B
HTML
21 lines
750 B
HTML
{{- $img := .Page.Resources.GetMatch .Destination -}}
|
|
{{- if and (not $img) .Page.File -}}
|
|
{{ $path := path.Join .Page.File.Dir .Destination }}
|
|
{{- $img = resources.Get $path -}}
|
|
{{- end -}}
|
|
|
|
{{- if $img -}}
|
|
{{- if eq $img.MediaType.MainType "video" -}}
|
|
<figure>
|
|
<video class="video-shortcode" preload="metadata" controls>
|
|
<source src="{{ $img.RelPermalink }}">
|
|
There should have been a video here but your browser does not seem to support it.
|
|
</video>
|
|
</figure>
|
|
{{- else -}}
|
|
<img loading="lazy" src="{{ $img.RelPermalink }}" type="" alt="{{ $.Text }}" {{ with $.Title}} title="{{ . }}" {{ end }} />
|
|
{{- end -}}
|
|
{{- else -}}
|
|
{{- warnf "No image found for %s from %s" .Destination .Page.File }}
|
|
{{- end -}}
|