blob: b906e9df87bc65cc64c82cb14a9d1bb36c1e3990 (
plain)
1
2
3
4
5
6
7
8
9
|
<div class="videodiv">
{%if this.caption %}<h2 class="gallerytitle">{{ this.caption }}</h2>{% endif %}
<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>
</div>
</div>
|