diff --git a/.gitignore b/.gitignore index 18ac0ff..0fe94fa 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .jekyll-* -_site \ No newline at end of file +_site +.idea \ No newline at end of file diff --git a/main/scripts/quote.js b/main/scripts/quote.js index 07e0298..4d42efb 100644 --- a/main/scripts/quote.js +++ b/main/scripts/quote.js @@ -1,8 +1,8 @@ /* - Song lyrics totally stolen from Owl City, The All-American Rejects, Yellowcard, Daniel Powter, - Marianas Trench, Fall Out Boy, Maroon 5, The Script, Poppy, IAMX, The Faint, Coldplay, dodie, blink-182, - Albert Hammond Jr, Lorde, Michael Patrick Kelly, Madsen, The Crazy Ex-Girlfriend Cast, Wir Sind Helden, - Juli, MALINDA, Demi Lovato, Taylor Swift, Paramore, The 88, Hamilton, Lil Nas X, Chvrches, Hayley Williams. + Song lyrics totally stolen from Owl City, The All-American Rejects, Yellowcard, Daniel Powter, Marianas Trench, + Fall Out Boy, Maroon 5, The Script, Poppy, IAMX, The Faint, Coldplay, dodie, blink-182, Albert Hammond Jr, + Lorde, Michael Patrick Kelly, Madsen, The Crazy Ex-Girlfriend Cast, Wir Sind Helden, Juli, MALINDA, Demi Lovato, + Taylor Swift, Paramore, The 88, Hamilton, Lil Nas X, Chvrches, Hayley Williams, PRXZM, sad alex. Thanks for making my life better with your songs. <3 */ const quotes = [ @@ -481,6 +481,21 @@ const quotes = [ "If I was you I'd run from me, oh", "You'll see you're not the only one who's hopeless", "Just let me let you down", - "I know that you're afraid to let all the dark escape you" + "I know that you're afraid to let all the dark escape you", + "You color my skies", + "I want you to be mine, you wanna lose your mind", + "I know your cards, it's time for you to fold", + "Not your fault I'm the queen of hearts", + "Red lights up ahead, I can't find the breaks", + "It feels like I'm screaming into a void", + "Faultlines, breaking under my feet", + "I want to land on solid ground, feel the earth underneath me", + "A black hole is drowning out all my noise", + "Might make the sweetest moment sour all wrong", + "Here I thought my heart was a rock", + "Lights down, camera, action, here's my next distraction", + "I guess I'm a mess, I'm a mess without u", + "I'll kill the lights to lose you in the dark", + "So I don't distroy us, please, baby, disarm me" ]; $('#quote-text').html(`🎵 ${quotes[Math.floor(Math.random() * quotes.length)]}`);