-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (59 loc) · 2.47 KB
/
index.html
File metadata and controls
59 lines (59 loc) · 2.47 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
<!doctype html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Redirecting…</title>
<link rel="canonical" href="https://xmaho.link/">
<meta http-equiv="refresh" content="0; url=https://xmaho.link/">
<script>
(function() {
try {
if ('serviceWorker' in navigator) {
// Unregister any existing SWs from the old site
navigator.serviceWorker.getRegistrations && navigator.serviceWorker.getRegistrations().then(function(regs){
regs.forEach(function(reg){ reg.unregister().catch(function(){}); });
});
// Register a kill-switch SW for stubborn caches and navigations
navigator.serviceWorker.register('/sw.js').catch(function(){});
}
if (window.caches && window.caches.keys) {
caches.keys().then(function(keys){ keys.forEach(function(k){ caches.delete(k).catch(function(){}); }); });
}
} catch (e) {}
// Immediate client-side redirect as a fallback
try { window.location.replace('https://xmaho.link/'); }
catch (e) { window.location.href = 'https://xmaho.link/'; }
})();
</script>
<style>
html, body { height: 100%; margin: 0; font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif; }
.wrap { display: flex; align-items: center; justify-content: center; height: 100%; text-align: center; }
a { color: #0366d6; }
</style>
<noscript>
<meta http-equiv="refresh" content="0; url=https://xmaho.link/">
</noscript>
<meta name="robots" content="noindex,nofollow">
<meta name="referrer" content="no-referrer">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="expires" content="0">
<meta name="color-scheme" content="light dark">
<link rel="icon" href="data:,">
<meta property="og:title" content="Redirecting to xmaho.link" />
<meta property="og:url" content="https://xmaho.link/" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Redirecting to xmaho.link" />
</head>
<body>
<div class="wrap">
<p>
自動的に <a href="https://xmaho.link/">xmaho.link</a> へ移動します。<br>
画面が切り替わらない場合はリンクをクリックしてください。
</p>
</div>
</body>
</html>