17 lines
435 B
HTML
17 lines
435 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="robots" content="noindex">
|
|
<meta http-equiv="refresh" content="0; url=/index.html">
|
|
<link rel="canonical" href="/index.html">
|
|
<title>Redirecting...</title>
|
|
<script>
|
|
const anchor = window.location.hash.substring(1);
|
|
location.href = `/index.html${anchor? `#${anchor}`: ""}`;
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<p>Redirecting...</p>
|
|
</body>
|
|
</html>
|