-
Notifications
You must be signed in to change notification settings - Fork 0
/
maintenance.php
91 lines (90 loc) · 2.03 KB
/
maintenance.php
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
<?php
// Return http response 503 service unavailable. This is important for SEO too!
$protocol = $_SERVER["SERVER_PROTOCOL"];
if ( 'HTTP/1.1' != $protocol && 'HTTP/1.0' != $protocol ) $protocol = 'HTTP/1.0';
header( "$protocol 503 Service Unavailable", true, 503 );
header( 'Content-Type: text/html; charset=utf-8' );
header( 'Retry-After: 600' ); // 10 minutes
?>
<!DOCTYPE html>
<html>
<head>
<title>PSite under maintenance - franckymobile.com</title>
<meta charset="utf-8" />
<style>
@import url(http://fonts.googleapis.com/css?family=Lora);
@import url(http://fonts.googleapis.com/css?family=Oswald);
body{
color: #333;
font-family: 'Lora', serif;
font-size: 16px;
line-height: 1.5625;
margin: 0;
padding: 0;
text-decoration: none;
background-color: #272729;
}
h1 {
font-size: 36px;
font-family: 'Oswald', arial, serif;
font-weight: normal;
}
#mDiv{
display:block;
width: 100%;
}
.content .wrap{
display:block;
margin: 0 auto;
width: 960px;
}
.content{
background-color: #fff;
padding: 20px 0 40px 0;
}
a {
color: #2883be;
text-decoration: none;
}
.header, .footer{
text-align:center;
padding-top: 15px;
padding-bottom: 15px;
color: #fff;
}
img{
max-width: 100%;
border:none;
}
@media only screen and (max-width: 960px) {
.content .wrap{
width: 100%;
padding: 0 20px;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
}
}
</style>
</head>
<body>
<div id="mDiv">
<div class="header">
<a href="/"><img src="/wp-content/uploads/2020/03/logo-300x300.jpg"/></a>
</div>
<div class="content">
<div class="wrap">
<h1 style="text-align: center;">Site under maintenance</h1>
<p>
Please refresh the page in 5 minutes.
</p>
<p style="text-align: center">
<img src="/wp-content/uploads/under-construction.jpg">
</p>
</div>
</div>
<div class="footer">© <?php echo date('Y'); ?> franckymobile.com</div>
</div>
</body>
</html>
<?php die(); ?>