blob: c8722415ab4966fb0e27dcf024a1b57c0f516fd6 (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<title>Server turned off</title>
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<style>
body {
font-family: sans-serif;
text-align: center;
padding-top: 50px;
}
.container {
max-width: 600px;
margin: 0 auto;
}
</style>
</head>
<body>
<div class="container">
<h1>Server turned off</h1>
<p>The servers are all currently turned off.</p>
<p>Please try again later.</p>
<p>Or email <a href="mailto:paul@nospam.buetow.org">paul@nospam.buetow.org</a> - so he can turn them back on for you!</p>
</div>
</body>
</html>
|