66 lines
2.5 KiB
Plaintext
66 lines
2.5 KiB
Plaintext
{% capture content %}
|
|
{% if include.link %}
|
|
<a href="{{ include.link }}" {% if include.caption %}alt="{{ include.caption }}"{% endif %}>
|
|
{% endif %}
|
|
{% assign file_info = site.static_files | where: "path", include.url %}
|
|
{% if include.type == "image" %}
|
|
<picture
|
|
class="content"
|
|
{% if include.lazyload %}data-lazyload=""{% endif %}
|
|
{% comment %}
|
|
src="{{ include.url | absolute_url }}"
|
|
{% endcomment %}
|
|
{% if include.width %}width="{{ include.width }}"{% endif %}
|
|
{% if include.height %}height="{{ include.height }}"{% endif %}>
|
|
{% if include.lazyload %}<noscript>{% 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 %}>
|
|
{% if include.lazyload %}</noscript>{% endif %}
|
|
</picture>
|
|
{% elsif include.type == "video" %}
|
|
<video controls
|
|
class="content"
|
|
{% if include.lazyload %}data-lazyload=""{% endif %}
|
|
{% if include.poster %}poster="{{ include.poster | absolute_url }}"{% endif %}
|
|
{% if include.preload %}preload="{{ include.preload }}"{% endif %}
|
|
{% comment %}
|
|
src="{{ include.url | absolute_url }}"
|
|
{% endcomment %}
|
|
{% 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 %}>
|
|
{% if include.lazyload %}<noscript>{% endif %}
|
|
<source src="{{ include.url | absolute_url }}">
|
|
{% if include.lazyload %}</noscript>{% endif %}
|
|
</video>
|
|
{% elsif include.type == "audio" %}
|
|
<audio controls
|
|
class="content"
|
|
{% if include.lazyload %}data-lazyload=""{% endif %}
|
|
{% if include.preload %}preload="{{ include.preload }}"{% endif %}
|
|
{% comment %}
|
|
src="{{ include.url | absolute_url }}"
|
|
{% endcomment %}
|
|
{% 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 %}>
|
|
{% if include.lazyload %}<noscript>{% endif %}
|
|
<source src="{{ include.url | absolute_url }}">
|
|
{% if include.lazyload %}</noscript>{% endif %}
|
|
</audio>
|
|
{% endif %}
|
|
{% if include.link %}
|
|
</a>
|
|
{% endif %}
|
|
{% if include.caption %}
|
|
<figcaption>{{ include.caption }}</figcaption>
|
|
{% endif %}
|
|
{% endcapture %}
|
|
{% include blocks/_base.liquid type="media" content=content float=include.float align=include.align %}
|