-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (102 loc) · 3.36 KB
/
index.html
File metadata and controls
112 lines (102 loc) · 3.36 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Redirecting... - pycloc</title>
<meta name="robots" content="noindex">
<!-- Non-JS fallback; JS will perform an immediate redirect. -->
<meta http-equiv="refresh" content="3; url=https://pycloc.github.io/pycloc">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<style>
html, body {
height: 100%;
}
body {
display: grid;
place-items: center;
margin: 0;
font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
color: #1f2937;
background: #f9fafb;
}
.card {
background: white;
border: 1px solid #e5e7eb;
border-radius: 12px;
padding: 24px 28px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
text-align: center;
max-width: 640px;
}
h1 {
font-size: 20px;
margin: 0 0 8px;
}
p {
margin: 6px 0;
color: #4b5563;
}
a {
color: #2563eb;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
code {
background: #f3f4f6;
padding: 2px 6px;
border-radius: 6px;
}
.small {
font-size: 12px;
color: #6b7280;
margin-top: 12px;
}
</style>
<script>
(function () {
const target = "https://pycloc.github.io/pycloc";
window.__redirectTarget = target;
// Update the visible link immediately once DOM is ready
document.addEventListener("DOMContentLoaded", () => {
const a = document.getElementById("redirect-link");
if (a) {
a.href = target;
a.textContent = target;
}
});
// Perform redirect ASAP
try {
window.location.replace(target);
} catch (_) {
window.location.href = target;
}
})();
</script>
</head>
<body>
<main class="card" role="main">
<h1>
Redirecting...
</h1>
<p>
You are being redirected to:
</p>
<p>
<a id="redirect-link" href="https://pycloc.github.io/pycloc">
https://pycloc.github.io/pycloc
</a>
</p>
<p class="small">
If you are not redirected automatically, use the link above.
</p>
<noscript>
<p class="small">
JavaScript is disabled! A fallback redirect will occur shortly. If it doesn’t, click the link.
</p>
</noscript>
</main>
</body>
</html>