video.html (338B)
1 <video controls> 2 {% for source in sources -%} 3 {% set type = source | split(pat=".") | last -%} 4 <source src="{{ config.base_url | safe }}{{ page.path | safe }}{{ source | safe }}" type="{{ 'video/' ~ type }}"> 5 {% endfor -%} 6 Your browser doesn't support the video tag and/or the video formats in use here – sorry! 7 </video>