www.byjp.me/layouts/partials/imgorvid.html
JP Hastings-Spital 9213afa245 Fix alt display
2024-03-09 11:51:59 +00:00

11 lines
No EOL
549 B
HTML

<figure>
{{ if hasSuffix .src ".mp4" }}
<video controls loop class="u-video">
<source src="{{.src}}" type="video/mp4">
<img {{ if .searchmeta | default true }}data-pagefind-meta="image[src]" {{end}}src="{{ .src }}.webp" />
(Your browser can't play videos. <a href="{{.src}}">Download instead</a>.)
</video>
{{ else }}
<img {{ if .searchmeta | default true }}data-pagefind-meta="image[src]" {{end}}src="{{ .src }}" {{ with .alt}}alt="{{ . }}" {{ end }}class="u-photo photo" />
{{ end }}
</figure>