-
Notifications
You must be signed in to change notification settings - Fork 4
/
indexx.html
87 lines (69 loc) · 2.42 KB
/
indexx.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
84
85
86
87
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<script language="Javascript" type="text/javascript" src="http://dark-space.org/construction/jquery-1.4.1.js"></script>
<script language="Javascript" type="text/javascript" src="http://dark-space.org/construction/jquery.lwtCountdown-0.9.5.js"></script>
<script language="Javascript" type="text/javascript" src="http://dark-space.org/construction/misc.js"></script>
<link rel="Stylesheet" type="text/css" href="construction/dark.css"></link>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>We are updating</title>
</head>
<body>
<div id="container">
<h1>THE GAME IS IN MAINTENCANCE</h1>
<h2 class="subtitle">Stay tuned for news and updates.</h2>
<!-- Countdown dashboard start -->
<div id="countdown_dashboard">
<div class="dash weeks_dash">
<span class="dash_title">weeks</span>
<div class="digit">4</div>
<div class="digit">4</div>
</div>
<div class="dash days_dash">
<span class="dash_title">days</span>
<div class="digit">0</div>
<div class="digit">5</div>
</div>
<div class="dash hours_dash">
<span class="dash_title">hours</span>
<div class="digit">0</div>
<div class="digit">5</div>
</div>
<div class="dash minutes_dash">
<span class="dash_title">minutes</span>
<div class="digit">4</div>
<div class="digit">3</div>
</div>
<div class="dash seconds_dash">
<span class="dash_title">seconds</span>
<div class="digit">2</div>
<div class="digit">4</div>
</div>
</div>
<!-- Countdown dashboard end -->
<div class="dev_comment">
We are updating the universe !<br/>
Follow us at Facebook: <a href="https://www.facebook.com/pages/Dark-Space-Empire/1490309864518434?ref=hl"/>Dark-Space: Empire!</a>
</div>
<div class="subscribe">
</div>
<script language="javascript" type="text/javascript">
jQuery(document).ready(function() {
$('#countdown_dashboard').countDown({
targetDate: {
'day': 15,
'month': 03,
'year': 2015,
'hour': 14,
'min': 30,
'sec': 0 }
});
$('#email_field').focus(email_focus).blur(email_blur);
$('#subscribe_form').bind('submit', subscribe_submit);
});
</script>
</div>
</body>
</html>