blob: eed28d3be12810febf97474c240a04b44580f8fc (
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
|
<!DOCTYPE html>
<html>
<head>
<title>Server turned off</title>
<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@span.buetow.org">paul@span.buetow.org</a> - so he can turn them back on for you!</p>
</div>
</body>
</html>
|