mirror of
https://github.com/fergalmoran/dss.api.git
synced 2025-12-26 03:09:40 +00:00
29 lines
862 B
HTML
29 lines
862 B
HTML
{% extends 'embedding/master.html' %}
|
|
{% load pipeline %}
|
|
{% block css %}
|
|
{% stylesheet 'embedding' %}
|
|
{% endblock %}
|
|
{% block content %}
|
|
<div id="uniquePlayer-1" class="webPlayer {{ theme }} audioPlayer">
|
|
<div id="uniqueContainer-1" class="videoPlayer"></div>
|
|
</div>
|
|
<aside>Content provided by <a href="http://deepsouthsounds.com" target="_blank">Deep South Sounds</a> </aside>
|
|
{% endblock %}
|
|
|
|
{% block scripts %}
|
|
{% javascript 'embedding' %}
|
|
<script>
|
|
$(document).ready(function () {
|
|
$('.webPlayer').videoPlayer({
|
|
name: '{{ title }}',
|
|
url: '{{ mix_url }}',
|
|
media: {
|
|
mp3: '{{ audio_url }}'
|
|
},
|
|
size: {
|
|
width: '600px'
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
{% endblock %} |