-
Notifications
You must be signed in to change notification settings - Fork 3
/
404.html
31 lines (28 loc) · 1.23 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
---
layout: fixed-header
title: 404 | CT WIFi
permalink: /404.html
---
<script>
function gifbg() {
var imgCount = 5;
var dir = 'https://d3e9l1phmgx8f2.cloudfront.net/images/gifs/';
var randomCount = (Math.floor(Math.random() * imgCount));
var images = ['cucumber1.gif', 'cucumber2.gif', 'cucumber3.gif', 'cat1.gif', 'cat2.gif'];
document.getElementById('banner').setAttribute("style", "background: linear-gradient(rgba(0, 0, 0, 0.30),rgba(0, 0, 0, 0.30)), url(" + dir + images[randomCount] + ");background-repeat: no-repeat;background-repeat: no-repeat;background-position: center;background-size: cover;");
}
$(document).ready(function(){
gifbg();
});
</script>
<div class="page-content">
<div id="banner" class="missing-page mdl-grid">
<div class="missing-page-text mdl-card-wide center-cell mdl-card mdl-cell--6-col mdl-cell--middle mdl-typography--text-center" style="border-style:none;">
<span style="position:relative;top:50%;transform:translateY(-50%);">
<h1 style="color:white;">Well this is awkward...</h1>
<p>Looks like we can't find the page you're looking for.</p>
<p>Looking For Splash Pages? Check out <a href="https://www.oh-mimo.com/">MIMO</a></p>
</span>
</div>
</div>
</div>