Put each quote of footer source code on separate line
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Anthony Wang 2024-01-04 21:52:12 -06:00
parent ac051d0d1d
commit 5f9f1060b0
Signed by: a
SSH key fingerprint: SHA256:B5ADfMCqd2M7d/jtXDoihAV/yfXOAbWWri9+GdCN4hQ

View file

@ -2,7 +2,24 @@
<div class="quote"></div>
<div>CC BY-SA 4.0</div>
<script>
var quotes = ["I'm not young enough to know everything.", "I think I'm eating the circular fry from the wrong dimension.", "I want to see the universe in debug mode.", "The kid was deliberately and maliciously watching television at him.", "How anNOYing is it thAT your faVORite mechaNIcal poeTry on whEELS can't even RUN THE SAME GAUGE as the counTRY nextdoor?!", "We're trying to figure out how to report capital gains from time traveling on our tax returns.", "The universe tends toward maximum irony. Don't push it.", "I bet I just made you refresh the page 1000 times.", "source ~/.bash_history", "It tastes like I'm a giraffe.", "憂鬱的臺灣烏龜", "If you refuse this mission, I'll break the fourth wall again!", "An idiot with a computer is a faster, better idiot.", "I distinctly remember forgetting that.", "It will make you laugh! It will make you cry! It will make you try mayonnaise-frosted pie!", "Icicles? Tide pods? No, typos."]
var quotes = [
"I'm not young enough to know everything.",
"I think I'm eating the circular fry from the wrong dimension.",
"I want to see the universe in debug mode.",
"The kid was deliberately and maliciously watching television at him.",
"How anNOYing is it thAT your faVORite mechaNIcal poeTry on whEELS can't even RUN THE SAME GAUGE as the counTRY nextdoor?!",
"We're trying to figure out how to report capital gains from time traveling on our tax returns.",
"The universe tends toward maximum irony. Don't push it.",
"I bet I just made you refresh the page 1000 times.",
"source ~/.bash_history",
"It tastes like I'm a giraffe.",
"憂鬱的臺灣烏龜",
"If you refuse this mission, I'll break the fourth wall again!",
"An idiot with a computer is a faster, better idiot.",
"I distinctly remember forgetting that.",
"It will make you laugh! It will make you cry! It will make you try mayonnaise-frosted pie!",
"Icicles? Tide pods? No, typos."
]
document.querySelector(".quote").innerHTML = "\"" + quotes[Math.floor(Math.random() * quotes.length)] + "\"";
</script>
</footer>