summaryrefslogtreecommitdiff
path: root/templates/blocks/video.html
blob: 55c55e5c902f4bb292e1e19edac73cb9e795e5fe (plain)
1
2
3
4
5
6
7
8
9
10
11
<div class="videodiv">
    <div class="video">
        <video max-width="720px" preload="metadata" controls="">
            {% set video = record.attachments.videos.get(this.url) %}
            <source src="{{ video|url }}" type="video/mp4">
        </video>
		{% if this.caption %}
		<div class="caption">{{this.caption}}</div>
		{% endif %}
    </div>
</div>