-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
37 lines (30 loc) · 1.25 KB
/
404.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
---
permalink: /404.html
layout: default
---
<link id="random-theme" rel="stylesheet" href="">
<div class="container text-center">
<div class="row">
<div class="col">
<h1 class="page-header">
404
</h1>
<div class="container-fluid ss-bg-bg-alt">
<p role="alert">
If this was supposed to be an actual page, make sure you let us know in the Discord!
</p>
<p role="alert">
Otherwise, please enjoy this sloth from my personal collection. We have lots!
</p>
</div>
<img id="404Sloths" class="img-fluid" data-randomimagepath="sloths">
</div>
</div>
</div>
<script>
{% comment %} TODO: Find some more elegant way to do this besides making directory-scoped variables for all the images we want. {%- endcomment -%}
const sloths = {{ site.static_files | where: 'is_sloth', true | map: "path" | jsonify }}
const themes = {{ site.static_files | where: 'is_server_theme', true | map: "path" | jsonify }}
document.getElementById("404Sloths").src = sloths[Math.floor(Math.random() * sloths.length)];
document.getElementById('random-theme').href = themes[Math.floor(Math.random() * themes.length)];
</script>