comparison bns_website/templates/music.html @ 68:1d50a0db4f21

- I moved the jplayer files to a jplayer dir under static/js. I thought about moving the flash file to another dir, but thought it'd be best to leave it with the rest of the jplayer files. - I removed some rogue colons in the music.html template.
author Bob Mourlam <bob.mourlam@gmail.com>
date Wed, 23 Nov 2011 09:16:47 -0600
parents 057b0a016b7a
children 4735fdc82b48
comparison
equal deleted inserted replaced
67:a878a98292a8 68:1d50a0db4f21
7 <link type="text/css" href="{{ STATIC_URL }}jplayer_skin/blue.monday/jplayer.blue.monday.css" rel="stylesheet" /> 7 <link type="text/css" href="{{ STATIC_URL }}jplayer_skin/blue.monday/jplayer.blue.monday.css" rel="stylesheet" />
8 {% endblock %} 8 {% endblock %}
9 9
10 {% block custom_js %} 10 {% block custom_js %}
11 <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script> 11 <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
12 <script type="text/javascript" src="{{ STATIC_URL }}js/jquery.jplayer.min.js"></script> 12 <script type="text/javascript" src="{{ STATIC_URL }}js/jplayer/jquery.jplayer.min.js"></script>
13 <script type="text/javascript" src="{{ STATIC_URL }}js/jplayer.playlist.min.js"></script> 13 <script type="text/javascript" src="{{ STATIC_URL }}js/jplayer/jplayer.playlist.min.js"></script>
14 <script type="text/javascript"> 14 <script type="text/javascript">
15 $(document).ready(function(){ 15 $(document).ready(function(){
16 16
17 new jPlayerPlaylist({ 17 new jPlayerPlaylist({
18 jPlayer: "#jquery_jplayer_1", 18 jPlayer: "#jquery_jplayer_1",
72 artist:"The Barbwires", 72 artist:"The Barbwires",
73 title:"La Caja del Muerto", 73 title:"La Caja del Muerto",
74 mp3:"{{ STATIC_URL }}music/11.mp3" 74 mp3:"{{ STATIC_URL }}music/11.mp3"
75 }, 75 },
76 { 76 {
77 artist:"Frankie & the Pool Boys:", 77 artist:"Frankie & the Pool Boys",
78 title:"Ewa on the Beach", 78 title:"Ewa on the Beach",
79 mp3:"{{ STATIC_URL }}music/12.mp3" 79 mp3:"{{ STATIC_URL }}music/12.mp3"
80 }, 80 },
81 { 81 {
82 artist:"The Thunderchiefs", 82 artist:"The Thunderchiefs",
87 artist:"The Secret Samurai", 87 artist:"The Secret Samurai",
88 title:"The Khazar", 88 title:"The Khazar",
89 mp3:"{{ STATIC_URL }}music/14.mp3" 89 mp3:"{{ STATIC_URL }}music/14.mp3"
90 }, 90 },
91 { 91 {
92 artist:"The Madeira:", 92 artist:"The Madeira",
93 title:"Witch Doctor", 93 title:"Witch Doctor",
94 mp3:"{{ STATIC_URL }}music/15.mp3" 94 mp3:"{{ STATIC_URL }}music/15.mp3"
95 }, 95 },
96 { 96 {
97 artist:"The Eliminators:", 97 artist:"The Eliminators",
98 title:"Walking Tall", 98 title:"Walking Tall",
99 mp3:"{{ STATIC_URL }}music/16.mp3" 99 mp3:"{{ STATIC_URL }}music/16.mp3"
100 }, 100 },
101 { 101 {
102 artist:"Surfer Joe", 102 artist:"Surfer Joe",
122 { 122 {
123 playlistOptions: { 123 playlistOptions: {
124 enableRemoveControls: true, 124 enableRemoveControls: true,
125 autoPlay: false 125 autoPlay: false
126 }, 126 },
127 swfPath: "{{ STATIC_URL }}js", 127 swfPath: "{{ STATIC_URL }}js/jplayer",
128 solution:"html, flash", 128 solution:"html, flash",
129 oggSupport: false, 129 oggSupport: false,
130 supplied: "mp3" 130 supplied: "mp3"
131 }); 131 });
132 }); 132 });