8 lines
395 B
HTML
8 lines
395 B
HTML
<video autoplay loop muted playsinline>
|
||
{% for source in sources -%}
|
||
{% set type = source | split(pat=".") | last -%}
|
||
<source src="{{ config.base_url | safe }}{{ page.path | safe }}{{ source | safe }}" type="{{ 'video/' ~ type }}" />
|
||
{% endfor -%}
|
||
Your browser doesn't support the video tag, which I use in place of .gifs, and/or the video formats in use here – sorry!
|
||
</video>
|