-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy path404.html
49 lines (48 loc) · 1.57 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
38
39
40
41
42
43
44
45
46
47
48
49
---
permalink: /404.html
---
<!DOCTYPE html>
<html lang="{{ site.lang | default: "en-US" }}" class="w-100 h-100">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>AB Tech: 404 Strobe Warning</title>
<link rel="stylesheet" href="{{ "/assets/css/main.css" | relative_url }}">
<style type="text/css">
* {
margin: 0;
padding: 0;
}
body {
background: black;
}
#background {
z-index: -1;
color: #fff;
background: black;
text-shadow: 0 0 6px red;
}
canvas {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
</style>
</head>
<body class="d-flex w-100 h-100 flex-column justify-content-center align-items-center">
<div id="background" class="flex-shrink-0 container d-flex text-center flex-column justify-content-center align-items-center">
<div class="col-lg-2 col-md-4 col-sm-4 col-xs-6 col-8">
<img src="{{ '/assets/img/abtech_logo_white.svg' | relative_url }}" class="img-fluid logo-red-shadow" alt="AB Tech Logo" />
</div>
<div class="col-md-4 col-sm-4 col-xs-6 col-xs-12 col-8">
<h1>404: Warning</h1>
<p>Strobes will be used extensively during tonight's performance.</p>
<p>Click anywhere to return home.</p>
</div>
</div>
<a href="{{ '/' | relative_url }}"><canvas class="d-block" id="canvas"></canvas></a>
<script src="{{ '/assets/js/404.js' | relative_url }}"></script>
</body>
</html>