Files
com.xaymar.www/_includes/blocks/media.liquid
T

41 lines
1.7 KiB
Plaintext
Raw Normal View History

2021-12-25 09:49:27 +01:00
{% capture content %}
{% if include.type == "image" %}
<picture
2021-12-25 11:01:32 +01:00
src="{{ include.url | absolute_url }}"
2021-12-25 09:49:27 +01:00
{% if include.width %}width="{{ include.width }}"{% endif %}
{% if include.height %}height="{{ include.height }}"{% endif %}>
<img src="{{ include.url | absolute_url }}"
{% if include.alt %}alt="{{ include.alt }}"{% endif %}
{% if include.width %}width="{{ include.width }}"{% endif %}
{% if include.height %}height="{{ include.height }}"{% endif %}>
</picture>
{% elsif include.type == "video" %}
<video controls
2021-12-25 11:01:32 +01:00
{% if include.poster %}poster="{{ include.poster | absolute_url }}"{% endif %}
{% if include.preload %}preload="{{ include.preload }}"{% endif %}
src="{{ include.url | absolute_url }}"
2021-12-25 09:49:27 +01:00
{% if include.width %}width="{{ include.width }}"{% endif %}
{% if include.height %}height="{{ include.height }}"{% endif %}
{% if include.autoplay %}autoplay="true"{% endif %}
{% if include.muted %}muted="true"{% endif %}
2021-12-25 11:01:32 +01:00
{% if include.loop %}loop="true"{% endif %}>
2021-12-25 09:49:27 +01:00
<source src="{{ include.url | absolute_url }}">
</video>
{% elsif include.type == "audio" %}
<audio controls
2021-12-25 11:01:32 +01:00
{% if include.preload %}preload="{{ include.preload }}"{% endif %}
src="{{ include.url | absolute_url }}"
2021-12-25 09:49:27 +01:00
{% if include.width %}width="{{ include.width }}"{% endif %}
{% if include.height %}height="{{ include.height }}"{% endif %}
{% if include.autoplay %}autoplay="true"{% endif %}
{% if include.muted %}muted="true"{% endif %}
{% if include.loop %}loop="true"{% endif %}>
<source src="{{ include.url | absolute_url }}">
</audio>
{% endif %}
{% if include.caption %}
<figcaption>{{ include.caption }}</figcaption>
{% endif %}
{% endcapture %}
{% include blocks/_base.liquid type="media" content=content float=include.float %}