redirect.html
HTML document, ASCII text
1
<html lang="en-US">
2
3
<head>
4
<style>
5
html { color-scheme: dark; }
6
</style>
7
<link rel="canonical" href="{{redirect}}" />
8
<meta charset="utf-8" />
9
<meta name="robots" content="noindex" />
10
<script>location.replace("{{redirect}}")</script>
11
<meta http-equiv="reload" content="0; url={{redirect}}" />
12
<title>Redirecting...</title>
13
</head>
14
15
<body>
16
<main>
17
<h1>Redirecting...</h1>
18
<p>This page has been moved to <a href="{{redirect}}">{{redirect}}</a> if you aren't automatically redirected, please click the following link to proceed to the new location of this page: <a href="{{redirect}}">{{redirect}}</a></p>
19
</main>
20
</body>
21
22
</html>
23