citra-emu
/
citra-web
Archived
1
0
Fork 0
This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
citra-web/site/themes/citra-bs-theme/layouts/shortcodes/mp4.html

16 lines
486 B
HTML
Raw Normal View History

<figure>
<div style="position: relative; padding-bottom: 56.25%; padding-top: 30px; height: 0; overflow: hidden;">
<video preload="auto" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;" controls>
<source src="{{ .Get "src" }}" type="video/mp4">
Your browser doesn't support mp4 video. :(
</video>
</div>
{{ with .Get "title" }}
<figcaption>
<h4>
{{ . }}
</h4>
</figcaption>
{{ end }}
</figure>