17 lines
554 B
HTML
17 lines
554 B
HTML
<figure>
|
|
|
|
<audio
|
|
src="{{ include.path | relative_url }}"
|
|
{% if include.class %}class="{{ include.class }}"{% endif %}
|
|
{% if include.alt %}alt="{{ include.alt }}"{% endif %}
|
|
{% if include.title %}title="{{ include.title }}"{% endif %}
|
|
{% if include.autoplay %}autoplay{% endif %}
|
|
{% if include.controls %}controls{% endif %}
|
|
{% if include.loop %}loop{% endif %}
|
|
{% if include.muted %}muted{% endif %}
|
|
/>
|
|
|
|
{%- if include.caption -%}<figcaption class="caption">{{ include.caption }}</figcaption>{%- endif %}
|
|
|
|
</figure>
|