13 lines
814 B
HTML
13 lines
814 B
HTML
|
<figure class="video aligncenter">
|
||
|
{%- assign mime_types = "mp4,webm" | split: "," %}
|
||
|
{%- if mime_types contains include.extension %}{% assign type = "video/" | append: include.extension %}{% endif %}
|
||
|
{%- assign qualities = include.qualities | split: "," %}
|
||
|
<video controls preload="auto" playsinline controls class='plyr' data-default='{{ qualities.first }}'>
|
||
|
{%- for quality in qualities -%}
|
||
|
<source src='https://cdn.bune.city/post-media/{{ page.date | date: "%Y-%m-%d" }}-{{ page.slug }}/{{ include.name }}-{{ quality }}.{{ include.extension }}' size='{{ quality }}' {%- if type %} type="{{ type }}" {%- endif -%}>
|
||
|
{% endfor %}
|
||
|
</video>
|
||
|
<figcaption>
|
||
|
The checkpoints are supposed to make a noise when you drive through them, and the egg gun should have a sound when firing.
|
||
|
</figcaption>
|
||
|
</figure>
|