clan-homepage/templates/shortcodes/video.html

7 lines
246 B
HTML
Raw Normal View History

2024-03-18 18:46:52 +00:00
<div {% if class %}class="{{ class }}"{% endif %}>
<video loop muted autoplay id="{{name}}">
2024-03-18 18:46:52 +00:00
<source src={{ get_url(path="videos/" ~ name) }} type="video/webm">
Your browser does not support the video tag.
</video>
</div>