ShowerLoop-cc/docker/showerloop/public/themes/chocolate/layouts/shortcodes/videojs.html

16 lines
372 B
HTML

{{ $id := .Get "id" }}
<div class="video-container">
<video
id="{{ $id }}"
controls
preload="auto"
width="640"
height="360">
<source src="/static/videos/{{ $id }}.mp4" type="video/mp4">
<p>
To view this video please enable JavaScript, and consider upgrading to a
web browser that supports HTML5 video
</p>
</video>
</div>