10 lines
389 B
HTML
10 lines
389 B
HTML
{% comment %}
|
|
|
|
Adds html audio element with source listed in object_location.
|
|
Provides a fallback to download the file.
|
|
|
|
{%- endcomment -%}
|
|
<audio controls class="w-100">
|
|
<source src="{{ page.object_location | relative_url }}">
|
|
Your browser does not support the audio element. Please <a href="{{ page.object_location | relative_url }}">download the audio file</a>.
|
|
</audio> |