forked from rc/aircox
19 lines
418 B
HTML
19 lines
418 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.url }}" controls>
|
|
{% endif %}
|
|
{% endcomment %}
|
|
<a-sound-item :data="{{ object|json }}" :player="player"
|
|
:actions="['play','queue']" @click="player.play(item)">
|
|
</a-sound-item>
|
|
</div>
|
|
|