-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (36 loc) · 1.51 KB
/
index.html
File metadata and controls
36 lines (36 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="refresh" content="0; url=https://mapsmessaging.io/" />
<meta name="robots" content="noindex,follow" />
<link rel="canonical" href="https://mapsmessaging.io/" />
<title>Redirecting to MAPS Messaging…</title>
<script>
(function() {
try {
// Preserve path/query/hash when possible.
var path = (location.pathname || "").replace(/^\/maps-messaging-site\/?/, "");
var dest = "https://mapsmessaging.io/" + path + (location.search || "") + (location.hash || "");
// Use replace() to avoid back button loops
window.location.replace(dest);
} catch (e) {
// Fallback
window.location.replace("https://mapsmessaging.io/");
}
})();
</script>
<style>
html,body {height:100%;margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;display:grid;place-items:center;}
.card {max-width:720px;padding:24px;border:1px solid #e5e7eb;border-radius:16px;box-shadow:0 10px 30px rgba(0,0,0,.05);text-align:center;}
a {text-decoration:underline;}
</style>
</head>
<body>
<div class="card">
<h1>Redirecting to <a href="https://mapsmessaging.io/">mapsmessaging.io</a>…</h1>
<p>If you are not redirected automatically, <a href="https://mapsmessaging.io/">click here</a>.</p>
<p><small>Status: soft redirect via HTML/JS (GitHub Pages). For permanent redirect use your DNS/hosting layer.</small></p>
</div>
</body>
</html>