Anthony Wang
623d214f71
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
22 lines
757 B
HTML
22 lines
757 B
HTML
{{ define "main"}}
|
|
|
|
<div class="text-404">
|
|
<h1 class="error-emoji"></h1>
|
|
<h2>
|
|
404 ... You've reached an imaginary page!
|
|
</h2>
|
|
<h3>
|
|
Please <a href="https://www.reddit.com/r/learnmath/comments/s4rt0/why_does_multiplying_by_i_correspond_to_90_degree/">rotate your computer 90 degrees</a> and try again.
|
|
</h3>
|
|
</div>
|
|
<script>
|
|
const errorEmojiContainer = document.getElementsByClassName('error-emoji')[0];
|
|
const emojiArray = [
|
|
'\\(o_o)/', '(o^^)o', '(˚Δ˚)b', '(^-^*)', '(≥o≤)', '(^_^)b', '(·_·)',
|
|
'(=\'X\'=)', '(>_<)', '(;-;)', '\\(^Д^)/',
|
|
];
|
|
const errorEmoji = emojiArray[Math.floor(Math.random() * emojiArray.length)];
|
|
errorEmojiContainer.appendChild(document.createTextNode(errorEmoji));
|
|
</script>
|
|
|
|
{{ end }}
|