mirror of
https://github.com/wezm/wezm.net.git
synced 2024-11-10 01:42:32 +00:00
13 lines
457 B
HTML
13 lines
457 B
HTML
{% if poster %}
|
|
{% else %}
|
|
{% set poster = "jpg" %}
|
|
{% endif %}
|
|
{% if preload %}
|
|
{% else %}
|
|
{% set preload = "none" %}
|
|
{% endif %}
|
|
|
|
<figure class="text-center">
|
|
<video controls preload="{{ preload }}" src="{{ config.base_url }}/{{ video }}" poster="{{ config.base_url }}/{{ video }}.{{ poster }}" {% if loop %}loop="loop"{% endif %} style="max-height: {{ height }}px" aria-label="{{ alt }}"></video>
|
|
<figcaption>{{ caption }}</figcaption>
|
|
</figure>
|