-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmaintenance.php
66 lines (64 loc) · 1.5 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
<?php
http_response_code(503);
header('Retry-After: 3600');
?>
<!DOCTYPE html>
<!--
* Maintenance (https://github.com/delight-im/Maintenance)
* Copyright (c) delight.im (https://www.delight.im/)
* Licensed under the MIT License (https://opensource.org/licenses/MIT)
-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Maintenance</title>
<style type="text/css">
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body, div#container {
width: 100%;
height: 100%;
}
div#container {
display: flex;
align-items: center;
justify-content: center;
}
div#content {
padding: 8px;
font-family: "Roboto", -apple-system, "San Francisco", "Segoe UI", "Helvetica Neue", sans-serif;
text-align: center;
font-size: 16px;
color: #333;
}
div#content h1 {
font-size: 32px;
}
div#content div.vertical-space {
margin: 32px 0;
}
</style>
</head>
<body>
<div id="container">
<div id="content">
<h1>We’ll be back soon!</h1>
<p>
We’re performing some maintenance at the moment and will be back shortly.
Sorry for the inconvenience!
</p>
<div class="vertical-space"></div>
<h1>Wir sind gleich zurück!</h1>
<p>
Wir führen gerade Wartungsarbeiten durch und sind in Kürze wieder da.
Bitte entschuldigen Sie die Unannehmlichkeiten!
</p>
</div>
</div>
</body>
</html>