-
Notifications
You must be signed in to change notification settings - Fork 0
/
503.html
59 lines (59 loc) · 1.45 KB
/
503.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
<!DOCTYPE html>
<html>
<head>
<title>Could not resolve endpoint - TSF.fyi</title>
<meta http-equiv=refresh content="5; url=https://theseoframework.com/" />
<link rel=canonical href=https://theseoframework.com/ />
<meta name=viewport content="width=device-width, initial-scale=1" />
<style>
html {
background: #000
}
body {
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
background: #919ea1;
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
font-size: 16px;
line-height: 1.625em;
color: #333;
margin: 0
}
#wrap {
padding: 2em;
background: #fff;
border: 1px solid #465053;
margin: 1em auto;
border-radius: 3px;
box-shadow: 0 0 1em #465053
}
h1 {
margin-top: 0
}
p:last-of-type {
margin-bottom: 0
}
a {
color: inherit
}
#timer {
font-family: monospace
}
</style>
</head>
<body>
<div id=wrap>
<h1>Error: Could not resolve endpoint</h1>
<p>Redirecting to <a href=https://theseoframework.com/>The SEO Framework</a> in <span id=timer>5</span> seconds.</p>
</div>
<script>
let time = 5, t = document.getElementById( 'timer' ), innerHTML = '';
setInterval( () => {
innerHTML = --time > 0 ? time : time < -3 ? '???' : ( '.'.repeat( Math.min( 3, Math.abs( time ) ) ) ) || 0;
if ( t.innerHTML !== innerHTML ) t.innerHTML = innerHTML;
}, 1000 );
</script>
</body>
</html>