-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaintenance.html
79 lines (69 loc) · 2 KB
/
maintenance.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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<title>メンテナンス | Mizuna</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<link href="/icon.png" rel="icon">
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
text-align: center;
background-color: #fff;
padding: 50px;
box-shadow: 0 4px 8px lightblue;
border-radius: 10px;
}
h1 {
color: #333;
font-size: 36px;
margin-bottom: 20px;
}
p {
font-size: 18px;
color: #666;
margin-bottom: 40px;
}
.logo {
width: 150px;
margin-bottom: 20px;
}
.footer {
font-size: 14px;
color: #aaa;
margin-top: 20px;
}
</style>
<script>
$.getScript("/js/option/mizuna_option.js", function () {
if (false === mizuna_options.maintenance) {
window.location.href = mizuna_options.mizuna_address;
}
});
</script>
</head>
<body>
<div class="container">
<img alt="Mizuna" class="logo" src="/icon.png">
<h1>現在メンテナンス中です</h1>
<p>しばらくお待ちください。<br>メンテナンスが完了次第、サービスを再開いたします。</p>
<div class="footer">
© <span id="Copyright_year"></span> Mizui Miduki
</div>
</div>
<script>
document.getElementById('Copyright_year').textContent = new Date().getFullYear();
</script>
</body>
</html>