summaryrefslogtreecommitdiff
path: root/albums.js
blob: c99510e88ac177070da0150680d4d18b31d3dfdb (plain)
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
const ALBUMS = {
  "Self-Titled": {
    "cover": "img/st.jpg",
    "tracks": [
      "Trapdoor",
      "March To The Sea",
      "Fall Away",
      "Air Catcher",
      "Addict With A Pen",
      "Isle Of Flightless Birds",
      "A Car, A Torch, A Death",
      "Before You Start Your Day",
      "Oh Ms Believer",
      "Johnny Boy",
      "The Pantaloon",
      "Friend, Please",
      "Taxi Cab",
      "Implicit Demand For Proof"
    ]
  },
  "Regional at Best": {
    "cover": "img/rab.jpg",
    "tracks": [
      "Forest",
      "Kitchen Sink",
      "Anathema",
      "Lovely",
      "Glowing Eyes",
      "Clear",
      "Slowtown",
      "Ruby",
      "Be Concerned"
    ]
  },
  "Regional at Best & Vessel": {
    "cover": "img/rab_vessel.jpg",
    "tracks": [
      "Holding On To You",
      "Guns For Hands",
      "Trees",
      "Car Radio",
      "Ode To Sleep",
    ]
  },
  "Vessel": {
    "cover": "img/vessel.jpg",
    "tracks": [
      "House Of Gold",
      "Migraine",
      "Semi-Automatic",
      "The Run And Go",
      "Screen",
      "Fake You Out",
      "Truce"
    ]
  },
  "Blurryface": {
    "cover": "img/blurryface.jpg",
    "tracks": [
      "Tear In My Heart",
      "Goner",
      "Stressed Out",
      "Ride",
      "Lane Boy",
      "Message Man",
      "Doubt",
      "Hometown",
      "We Don't Believe What's On T.V.",
      "Polarize",
      "Fairly Local",
      "The Judge",
      "Heavydirtysoul",
      "Not Today"
    ]
  },
  "Trench": {
    "cover": "img/trench.jpg",
    "tracks": [
      "Legend",
      "Chlorine",
      "Cut My Lip",
      "The Hype",
      "Levitate",
      "Smithereens",
      "Bandito",
      "Neon Gravestones",
      "Jumpsuit",
      "Pet Cheetah",
      "My Blood",
      "Nico And The Niners",
      "Morph",
      "Leave The City"
    ]
  },
  "Scaled And Icy": {
    "cover": "img/sai.jpg",
    "tracks": [
      "Formidable",
      "Redecorate",
      "Never Take It",
      "Choker",
      "No Chances",
      "Saturday",
      "Bounce Man",
      "Shy Away",
      "Mulberry Street",
      "The Outside",
      "Good Day"
    ]
  },
  "Single": {
    "cover": "img/single.jpg",
    "tracks": [
      "Time To Say Goodbye",
      "Cancer",
      "Heathens",
      "Level Of Concern",
      "Christmas Saves The Year"
    ]
  }
}