-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
35 lines (30 loc) · 1.13 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Wikimedia Server Connectivity Dashboard</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="color-scheme" content="light dark">
<meta name="description" content="Tool telling your connectivity to Wikimedia servers">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
</head>
<body>
<noscript>
<div id="noscript">
<p>Without <b>JavaScript</b>, your distance to free knowledge remains a mystery.</p>
<p>Please enable JavaScript to use this app.</p>
</div>
</noscript>
<div id="legacy" style="display:none">
<p>Your distance to free knowledge is just like that to the <b>modern Web</b>.</p>
<p>Please use a modern browser.</p>
</div>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
<script nomodule>
document.getElementById('legacy').style.display = '';
</script>
</body>
</html>