-
Notifications
You must be signed in to change notification settings - Fork 0
/
robots.txt
92 lines (72 loc) · 1.43 KB
/
robots.txt
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
<!DOCTYPE html>
<html>
<head>
<title>Site Is Offline</title>
<style type="text/css">
body
{
font-size:16px;
font-family: 'Kameron', Georgia,serif;
}
#cont
{
position:relative;
width:100%;
margin-top:20%;
}
.align-center
{
text-align:center;
}
.align-left
{
float:left;
}
.align-right
{
float:right;
}
.notice{
background-color: rgb(203, 232, 107);
padding:10px;
}
.warning{
background-color: #BE2817;
padding:10px;
word-wrap: break-word;
}
div#list .green,div#list .red
{
width:400px;
}
</style>
<script type="text/javascript">
WebFontConfig = {
google: { families: [ 'Kameron:400,700' ] }
};
(function() {
var wf = document.createElement('script');
wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
'://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
wf.type = 'text/javascript';
wf.async = 'true';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(wf, s);
})(); </script>
</head>
<body>
<div id="cont">
<span class="content">
<h1 class="align-center">Site is offline for maintenance</h1>
<div id="list">
<ul class="green align-left">
<li><p class="notice">I'm Updating It :D</p></li>
</ul>
<ul class="red align-right">
<li><p class="warning">Site is down</p></li>
</ul>
</div>
</span>
</div>
</body>
</html>