www.byjp.me/layouts/partials/imgorvid.html
2023-04-29 21:46:50 +01:00

11 lines
No EOL
310 B
HTML

<figure>
{{ if hasSuffix . ".mp4" }}
<video controls loop>
<source src="{{.}}" type="video/mp4">
<img src="{{ . }}.jpg" />
(Your browser can't play videos. <a href="{{.}}">Download instead</a>.)
</video>
{{ else }}
<img src="{{ . }}" />
{{ end }}
</figure>