comparison bns_website/templates/music.html @ 86:54f616fbd3c5

Merging with default.
author Chris Ridgway <ckridgway@gmail.com>
date Sat, 26 Nov 2011 15:10:44 -0600
parents f320699478d7
children
comparison
equal deleted inserted replaced
85:e60af48feb00 86:54f616fbd3c5
1 {% extends 'base.html' %} 1 {% extends 'base.html' %}
2 {% load url from future %}
2 {% load core_tags %} 3 {% load core_tags %}
3 4
4 {% block title %}Listen{% endblock %} 5 {% block title %}Listen{% endblock %}
5 6
6 {% block custom_css %} 7 {% block custom_css %}
18 jPlayer: "#jquery_jplayer_1", 19 jPlayer: "#jquery_jplayer_1",
19 cssSelectorAncestor: "#jp_container_1"}, 20 cssSelectorAncestor: "#jp_container_1"},
20 [ 21 [
21 { 22 {
22 artist:"El Supernaut", 23 artist:"El Supernaut",
23 title:"Wonderman from Initiö", 24 title:"Wonderman from Intiö",
24 mp3:"{{ STATIC_URL }}music/1.mp3" 25 mp3:"{{ STATIC_URL }}music/1.mp3"
25 }, 26 },
26 { 27 {
27 artist:"Los Twang! Marvels", 28 artist:"Los Twang! Marvels",
28 title:"Sea of Glory", 29 title:"Sea of Glory",
134 {% endblock %} 135 {% endblock %}
135 136
136 {% block content %} 137 {% block content %}
137 {% navbar 'music' %} 138 {% navbar 'music' %}
138 <h1>Listen</h1> 139 <h1>Listen</h1>
140
141 <div class="row">
142 <div class="span8">
143
139 <div id="jquery_jplayer_1" class="jp-jplayer"></div> 144 <div id="jquery_jplayer_1" class="jp-jplayer"></div>
140 145
141 <div id="jp_container_1" class="jp-audio"> 146 <div id="jp_container_1" class="jp-audio">
142 <div class="jp-type-playlist"> 147 <div class="jp-type-playlist">
143 <div class="jp-gui jp-interface"> 148 <div class="jp-gui jp-interface">
179 <span>Update Required</span> 184 <span>Update Required</span>
180 To play the media you will need to either update your browser to a recent version or update your <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash plugin</a>. 185 To play the media you will need to either update your browser to a recent version or update your <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash plugin</a>.
181 </div> 186 </div>
182 </div> 187 </div>
183 </div> 188 </div>
189
190 </div>
191 <div class="span7 offset1">
192 <div class="alert-message block-message info">
193 <h2>Like what you hear?</h2>
194 <a href="{% url 'buy' %}" class="btn large primary bns">Buy Now! »</a>
195 </div>
196 </div>
197 </div>
184 {% endblock %} 198 {% endblock %}