-
Notifications
You must be signed in to change notification settings - Fork 33
/
404.html
39 lines (37 loc) · 1.15 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
---
layout: null
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Page not found - {{ site.title }}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="/favicon.png">
<script type="text/javascript">
function countDown(secs,surl){
//alert(surl);
var jumpto = document.getElementById('jumpto');
jumpto.innerHTML=secs;
if(--secs>0){
setTimeout("countDown("+secs+",'"+surl+"')",1000);
}
else{
location.href=surl;
}
}
</script>
<style type="text/css">
.center { float: none; margin-left: auto; margin-right: auto; text-align: center; }
</style>
</head>
<body>
<div class="center">
<h1>404</h1>
<p>There isn't a Page here.</p>
<p>Jump to <a href="/">{{ site.title }}</a> after <span id="jumpto" style="font-weight: bold"> 5 </span> seconds,</p>
<script type="text/javascript">countDown(5,'/');</script>
<p>or click <a href="/" target="_parent"><span style="font-weight: bold">Here</span></a> to return.</p>
</div>
</body>
</html>