-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (91 loc) · 4.21 KB
/
index.html
File metadata and controls
99 lines (91 loc) · 4.21 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html class="wp-toolbar" lang="en-US">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="archytech99">
<meta name="description" content="">
<meta name="keywords" content="under construction, maintenance, countdown, workspace" />
<title>Maintenance Server</title>
<link rel="stylesheet" href="vendor/bootstrap/css/bootstrap.min.css" />
<link rel="stylesheet" href="vendor/fontawesome-free/css/fontawesome.min.css" />
<link rel="stylesheet" href="css/styles.css" />
<link rel="icon" type="image/png" href="img/favicon.png">
<!-- Google Analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');ga('create', 'UA-17228769-1', 'auto');ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
<style type="text/css">
html body {
background: url('img/workspace_desk_coffee_flowers_theme.jpg') repeat;
background-size: cover;
background-position: top !important;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="mt-module col-12 col-md-12 col-sm-12 col-xs-12 col-mt-div mt-div">
<div class="mt-element">
<div class="divider"></div>
</div>
</div>
<div class="mt-module col-6 col-md-6 col-sm-12 col-xs-12 col-div-mt mt-div">
<div class="mt-element">
<div class="divider"></div>
</div>
</div>
<div class="mt-module col-6 col-md-6 col-sm-12 col-xs-12 caption-mt">
<div class="mt-element">
<div class="headingl"><h1>Coming Soon</h1></div>
</div>
</div>
<div class="mt-module col-6 col-md-6 col-sm-12 col-xs-12 col-div-mt mt-div">
<div class="mt-element">
<div class="divider"></div>
</div>
</div>
<div class="mt-module col-6 col-md-6 col-sm-12 col-xs-12 countdown_timer">
<div class="mt-element" data-element-type="countdown_timer" data-date="2021/10/02 00:00:00">
<div class="fcountdown-timer">256 days 23:59:59</div>
</div>
</div>
<div class="mt-module message col-6 col-md-6 col-sm-12 col-xs-12 mt-div">
<div class="mt-element">
<div class="text">
Kami sedang melakukan perubahan besar dan beberapa penyesuaian untuk platform webserver yang baru.
</div>
</div>
</div>
<div class="mt-module col-6 col-md-6 col-sm-12 col-xs-12 mt-div">
<div class="mt-element">
<div class="divider"></div>
</div>
</div>
<div class="mt-module col-6 col-md-6 col-sm-12 col-xs-12 social mt-div">
<div class="mt-element">
<div class="socialicons">
<a title="linkedin" href="#" target="_blank"><i class="fab fa-linkedin"></i></a>
<a title="facebook" href="#" target="_blank"><i class="fab fa-facebook-square"></i></a>
<a title="twitter" href="#" target="_blank"><i class="fab fa-twitter-square"></i></a>
<a title="instagram" href="#" target="_blank"><i class="fab fa-instagram"></i></a>
<a title="github" href="#" target="_blank"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
</div>
</div>
<script src="js/jquery.js" type="text/javascript"></script>
<script src="js/jquery.countdown.min.js" type="text/javascript"></script>
<script src="vendor/fontawesome-free/js/all.js" type="text/javascript"></script>
<script>
$("[data-element-type='countdown_timer'] .fcountdown-timer").countdown(
$("[data-element-type='countdown_timer']").data('date'),
function(event) {
$(this).text(event.strftime("%D days %H:%M:%S"));
});
</script>
</body>
</html>