aboutsummaryrefslogtreecommitdiff
path: root/layouts
diff options
context:
space:
mode:
authorAnthony Wang2024-01-04 21:52:12 -0600
committerAnthony Wang2024-01-04 21:52:12 -0600
commit5f9f1060b0436f482e4b19be9f210f5087dabf42 (patch)
tree44e84a9da258411165ead825472607fcfd6fc9b7 /layouts
parentac051d0d1d869fba917c00792a4852a3067a6c99 (diff)
Put each quote of footer source code on separate line
Diffstat (limited to 'layouts')
-rw-r--r--layouts/partials/footer.html19
1 files changed, 18 insertions, 1 deletions
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index 7b9db5a..a4f0de1 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -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>