blob: 68e3551228723fe8f5d76995fcf2b914f78dccb6 (
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
29
30
31
32
33
34
35
36
37
38
39
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Blogchain</title>
<style>
* {
font-family: sans-serif;
overflow: hidden;
}
html, body {
background: #ddd;
height: 100%;
width: 100%;
}
div {
display: flex;
text-align:center;
align-items: center;
justify-content: center;
height: 100%;
width: 100%;
}
</style>
</head>
<body>
<div>
<article>
<h1>No chain for you!</h1>
<p>We closed Blogchain while we tidy up things. It will be back soon!</p>
</article>
</div>
</body>
</html>
|