This repository has been archived by the owner on Apr 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
83 lines (82 loc) · 3.52 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<head>
<title>Whoops, something went wrong. :(</title>
<meta name="description" content="Whoops, something went wrong. :(" />
<link rel="shortcut icon" href="http://mars11.com/favicon.ico" />
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple114.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple72.png">
<link rel="apple-touch-icon-precomposed" href="/img/apple57.png">
<link href='http://fonts.googleapis.com/css?family=Droid+Sans:700|Cabin:600|Pontano+Sans' rel='stylesheet' type='text/css'>
<link href='/css/style.css' rel='stylesheet' type='text/css'>
</head>
<body onload="onLoad();" onkeydown="keyPress(event);">
<canvas id="themecanvas"></canvas>
<div id="panel">
<div id="name">
<p>Arthur Tucker</p>
</div>
<div id="jsdebug"></div>
<div class="time">
<div id="time"></div>
</div>
<div id="panelicons">
<a href="http://db.tt/FFgst2x" target="blank" class="imglink">
<img src="/img/panel/dropbox.svg" id="dropbox" class="panelicons"/>
</a>
<img src="/img/panel/avatar.svg" id="avatar" class="panelicons" onclick="socialTog()"/>
<img src="/img/panel/high.svg" id="speaker" class="panelicons" onclick="muteAudio()"/>
</div>
</div>
<div id="notify"></div>
<div id="social" class="hidden">
<div id="social-triangle"></div>
<a href="http://plus.google.com/111629734323967418199" target="blank" class="imglink">
<img src="/img/social/google.png" class="socialicons"/>
</a>
<a href="http://twitter.com/#/Arthur_Mars11" target="blank" class="imglink">
<img src="/img/social/twitter.png" class="socialicons"/>
</a>
<a href="mailto:[email protected]" class="imglink">
<img src="/img/social/gmail.png" class="socialicons"/>
</a>
</div>
<div id="main">
<h3>Whoops, something went wrong. Please check the URL to make sure it was entered correctly.</h3>
</div>
<script type="text/javascript" src="/js/snowflake.js"></script>
<script type="text/javascript">
function globalVariable() {
dev = 0;
chimes = 0;
mutepressed = 0;
socialpressed = 0;
notifycolor = 0;
s = document.getElementById("social");
zombyell = 0;
ghost = 0;
}
globalVariable();
hashCheck();
function hashCheck() {
if (window.location.hash=='#dev') {
dev = 1;
}
setTimeout('hashCheck();',1000);
}
document.getElementById('main').className = "full";
setTimeout("document.getElementById('panel').style.top = '0'; startTime();",750);
</script>
<script type="text/javascript" async src="/js/first.js"></script>
<script type="text/javascript" async src="/js/third.js"></script>
<!--[if IE]><script type="text/javascript">
showNotify('<a href="http://www.browserchoice.eu/">You are using MS IE 9 or less, this site will not display correctly. Update or switch to a more standards complient browser.</a>')
</script><![endif]-->
<div id="hidden">
<audio id="chime" src="/content/audio/clock.wav" preload="none" onended="chimes++;"></audio>
<audio id="zombyell" src="/content/audio/zombyell.wav" preload="none" onended="zombyell++;"></audio>
<audio id="ghost" src="/content/audio/ghost.wav" preload="none" onended="ghost++;"></audio>
<audio id="outofphase" src="/content/audio/outofphase.wav" preload="none" onended="outofphase++;"></audio>
<audio id="churchbell" src="/content/audio/churchbell.wav" preload="none" onended="churchbell++;"></audio>
</div>
</body>
</html>