-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathposts.html
More file actions
70 lines (70 loc) · 1.99 KB
/
posts.html
File metadata and controls
70 lines (70 loc) · 1.99 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Thomas Buhrmann — Redirecting</title>
<meta http-equiv="refresh" content="3; url=https://me.tomorro.dev/" />
<link rel="canonical" href="https://me.tomorro.dev/" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Karla:wght@400;500&family=Montserrat:wght@600;700&display=swap" rel="stylesheet" />
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: 'Karla', sans-serif;
color: #252525;
background: #fff;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
padding: 1.5rem;
}
.container {
max-width: 64rem;
width: 100%;
text-align: center;
}
h1 {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 1.75rem;
margin-bottom: 0.5rem;
}
p {
color: #555;
font-size: 1.05rem;
line-height: 1.6;
margin-bottom: 1.5rem;
}
a {
color: #252525;
font-weight: 500;
text-decoration: underline;
text-underline-offset: 3px;
}
a:hover { color: #000; }
.sep {
width: 3rem;
height: 2px;
background: #e5e5e5;
margin: 1.5rem auto;
}
.subtle { color: #999; font-size: 0.85rem; }
</style>
</head>
<body>
<div class="container">
<h1>This site has moved</h1>
<p>You'll be redirected to <a href="https://me.tomorro.dev/">me.tomorro.dev</a> in a few seconds.</p>
<div class="sep"></div>
<p class="subtle">If you're not redirected, <a href="https://me.tomorro.dev/">click here</a>.</p>
</div>
<script>
setTimeout(function() {
window.location.replace("https://me.tomorro.dev/");
}, 3000);
</script>
</body>
</html>