mirror of
https://github.com/by-jp/www.byjp.me.git
synced 2025-08-08 17:15:56 +01:00
11 lines
No EOL
310 B
HTML
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> |