website/layouts/404.html
Anthony Wang 4e9c6dfd2f
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Move random quotes to footer, disable next/prev buttons which collide with footer text
2023-12-29 19:22:44 -06:00

23 lines
638 B
HTML

{{ define "main"}}
<div class="text-404">
<h1 class="error-emoji"></h1>
<h2>
404 ... You've reached an imaginary page!
</h2>
<h3>
Please rotate your computer 90 degrees 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 }}