7 lines
321 B
HTML
7 lines
321 B
HTML
<video {% if autoplay %}autoplay{% endif %} {% if loop %}loop{% endif %} controls>
|
|
{%- set video_path = page.colocated_path ~ src %}
|
|
{%- set type = src | split(pat=".") | last %}
|
|
<source src="{{ get_url(path=video_path) }}" type="{{ 'video/' ~ type }}" />
|
|
Your browser doesn't support the video.
|
|
</video>
|