-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (58 loc) · 2.14 KB
/
index.html
File metadata and controls
65 lines (58 loc) · 2.14 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
<!doctype html>
<html itemscope itemtype="http://schema.org/WebPage">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
<meta itemprop="name" content="Meshviewer" />
<meta
name="description"
itemprop="description"
content="Knotenkarte - Zeigt alle Knoten, Statistiken und Verbindungen auf Karte oder Topologie"
/>
<meta property="business:contact_data:country_name" content="Germany" />
<meta name="twitter:card" content="summary" />
<meta name="og:title" content="Meshviewer" />
<meta
name="og:description"
content="Meshviewer Knotenkarte - Zeigt alle Knoten, Statistiken und Verbindungen auf Karte oder Topologie"
/>
<meta name="og:site_name" content="Meshviewer" />
<meta name="og:type" content="website" />
<title>Meshviewer - loading...</title>
<link rel="icon" href="./favicon.ico" />
<link rel="apple-touch-icon" href="./apple-touch-icon-180x180.png" sizes="180x180" />
<link rel="mask-icon" href="./mask-icon.svg" color="#FFFFFF" />
<meta name="theme-color" content="#ffffff" />
<!-- Keep storage key ("meshviewer.theme") and class name ("theme_dark") in sync with lib/theme.ts -->
<script>
try {
var t = localStorage.getItem("meshviewer.theme");
if (t === "dark" || (t !== "light" && matchMedia("(prefers-color-scheme: dark)").matches)) {
document.documentElement.classList.add("theme_dark");
}
} catch (e) {
try {
if (matchMedia("(prefers-color-scheme: dark)").matches) {
document.documentElement.classList.add("theme_dark");
}
} catch (_) {
/* matchMedia unavailable; accept a light paint */
}
}
</script>
<script src="lib/index.ts" type="module"></script>
</head>
<body>
<div class="loader">
<p>
Lade<br />
<img src="assets/logo.svg" class="spinner" alt="Loading ..." />
<br />
Karten & Knoten...
</p>
<noscript>
<strong>JavaScript required</strong>
</noscript>
</div>
</body>
</html>