-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
72 lines (67 loc) · 2.34 KB
/
index.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
<!DOCTYPE html>
<!--[if lt IE 7]>
<html class="no-js lt-ie9 lt-ie8 lt-ie7">
<![endif]-->
<!--[if IE 7]>
<html class="no-js lt-ie9 lt-ie8">
<![endif]-->
<!--[if IE 8]>
<html class="no-js lt-ie9">
<![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js">
<!--<![endif]-->
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DartPower Team LLC - Loading site engine...</title>
<meta name="description" content="DartPower Team LLC Site" />
<meta name="keywords" content="dartpower,dartpower team,dpt,dpteam,doom,brutal doom,zandronum,zdoom,gzdoom,simpson-nekek" />
<meta name="author" content="DartPower" />
<link rel="shortcut icon" href="images/dpt_favicon.png" />
<meta name="theme-color" content="#0088FF" />
<link rel="stylesheet" type="text/css" href="index-style.css" />
<link rel="stylesheet" type="text/css" href="failsafe.css" />
<script src="jquery-3.5.1.min.js"></script>
<script src="failsafe.js?v=1.0.2"></script>
<script type="text/javascript">
var ss = 1;
function countdown() {
ss = ss - 1;
if (ss < 0) {
window.location = "index-main.html";
} else {
window.setTimeout("countdown()", 5000);
}
}
</script>
<style>
html {
height: 100%;
}
body {
/* min-height:100%; */
background-color: #009bff;
background-image: url('images/background_loading.gif');
background-repeat: no-repeat;
background-position: center center;
-webkit-font-smoothing: antialiased;
}
</style>
</head>
<body onload="countdown()">
<!--[if lt IE 7]>
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
<![endif]-->
<script>
$(function() {
$.failsafe({
checkUrl: 'failsafe.css',
checkInterval: 5000,
chargeThreshold: 80
});
});
</script>
</body>
</html>