18 lines
387 B
HTML
18 lines
387 B
HTML
{% comment %}
|
|
List item for a podcast.
|
|
|
|
{% endcomment %}
|
|
{% load aircox %}
|
|
<div class="podcast">
|
|
{% comment %}
|
|
{% if object.embed %}
|
|
{{ object.embed|safe }}
|
|
{% else %}
|
|
<audio src="{{ object.file.url }}" controls>
|
|
{% endif %}
|
|
{% endcomment %}
|
|
<a-sound-item :data="{{ object|json }}" :player="player"
|
|
:actions="['play']">
|
|
</a-sound-item>
|
|
</div>
|