-
Notifications
You must be signed in to change notification settings - Fork 0
/
accordionLayout.js
62 lines (62 loc) · 3.75 KB
/
accordionLayout.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
var accordionLayout = [
{
header: "Single - Snowshoe Scuffle",
songs: [
{ name: "Snowshoe Scuffle", url: "audio/newStuff/Snowshoe Scuffle.mp3" },
],
otherContentID: ""
},
{
header: "Album #3 - Stuck Inside of a Spectrogram",
songs: [
{ name: "Pumpkin Stew", url: "audio/album3/Pumpkin Stew by Roodimentary Sciences.mp3" },
{ name: "Bringing Back Argyle", url: "audio/album3/Bringing Back Argyle.mp3" },
{ name: "Disco Time at the FBI", url: "audio/album3/Disco Time at the FBI.mp3" },
{ name: "Dreaming in jQuery", url: "audio/album3/Dreaming in jQuery.mp3" },
{ name: "Know You (feat. Sally Callahan) [Roodimentary Sciences Mix]", url: "audio/album3/Know You - Sally Callahan (Roodimentary Sciences Mix).mp3" }
],
otherContentID: ""
},
{
header: "Album #2 - Freshly Squeezed Beats EP",
songs: [
{ name: "Swagmaster's Breakfast", url: "audio/album2/Swagmaster's Breakfast.mp3" },
{ name: "Junior Varsity Ping Pong Team Theme", url: "audio/album2/Junior Varsity Ping Pong Team Theme.mp3" },
{ name: "Metal Detector in D# Minor", url: "audio/album2/Metal Detector in D Sharp Minor.mp3" },
{ name: "Dispenception", url: "audio/album2/Dispenception.mp3" },
{ name: "Apricots in the Atmosphere", url: "audio/album2/Apricots in the Atmosphere.mp3" }
],
otherContentID: ""
},
{
header: "Album #1 - Roodimentary Sciences",
songs: [
{ name: "Post-Trib Return to Chicago", url: "audio/album1/01_Post-Trib Return to Chicago.mp3" },
{ name: "8-Bit Live", url: "audio/album1/02_8-Bit Live.mp3" },
{ name: "Summer at the South Pole", url: "audio/album1/03_Summer at the South Pole.mp3" },
{ name: "Straddling the Escarpment", url: "audio/album1/04_Straddling the Escarpment.mp3" },
{ name: "The Strengths of Twelfths (feat A-Darwin on Bass)", url: "audio/album1/05_The Strengths of Twelfths (feat A-Darwin on Bass).mp3" },
{ name: "Attack of the Robotic Octopus", url: "audio/album1/06_Attack of the Robotic Octopus.mp3" },
{ name: "Policemen in Jetpacks", url: "audio/album1/07_Policemen in Jetpacks.mp3" },
{ name: "Dance of the Arabian Barber", url: "audio/album1/08_Dance of the Arabian Barber.mp3" },
{ name: "Gravitation Violation", url: "audio/album1/09_Gravitation Violation.mp3" },
{ name: "The Dog Days of March", url: "audio/album1/10_The Dog Days of March.mp3" },
{ name: "I'll Give You Anything - Sally Callahan", url: "audio/album1/11_I'll Give You Anything - Sally Callahan (Roodimentary Sciences Remix).mp3" }
],
otherContentID: ""
},
{
header: "Unfinished Things",
songs: [
{ name: "Settle Down", url: "audio/newStuff/Settle Down - Roodimentary Sciences.mp3" },
{ name: "Some kind of glitchy piano jam", url: "audio/newStuff/Some kind of glitchy piano jam.mp3" },
{ name: "Treehouse Enterprise", url: "audio/newStuff/Treehouse Enterprise.mp3" },
{ name: "I Left My Hot Air Balloon on the Sears Tower", url: "audio/newStuff/I Left My Hot Air Balloon on the Sears Tower.mp3" },
{ name: "Landing On Saturn's Rings", url: "audio/newStuff/Landing On Saturn's Rings.mp3" },
{ name: "My Portion Forever - with Matt Casiple", url: "audio/newStuff/My Portion Forever.mp3" },
{ name: "congregating banana chips", url: "audio/newStuff/Strumming Synth Experimentation.mp3" },
{ name: "Reversing the Polarity", url: "audio/newStuff/Don't stay in college forever.mp3" }
],
otherContentID: ""
}
];