-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (48 loc) · 1.51 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Ledenportaal - INDEV</title>
<script>
(function () {
const erudaSRC = "//cdn.jsdelivr.net/npm/eruda";
const erudaVueSRC =
"//cdn.jsdelivr.net/npm/eruda-vue@1.0.1/eruda-vue.min.js";
if (
!/eruda=true/.test(window.location) &&
localStorage.getItem("active-eruda") != "true"
)
return;
document.write("<scr" + 'ipt src="' + erudaSRC + '"></scr' + "ipt>");
document.write("<scr" + 'ipt src="' + erudaVueSRC + '"></scr' + "ipt>");
document.write("<scr" + "ipt>eruda.init();</scr" + "ipt>");
document.write("<scr" + "ipt>eruda.add(erudaVue);</scr" + "ipt>");
})();
</script>
<style>
body {
background-color: black;
color: white;
}
</style>
</head>
<body>
<noscript>
<style>
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
sans-serif;
}
</style>
<strong
>Sorry, je moet Javascript toestaan, anders werkt het ledenportaal niet.
<br />Sta Javascript toe om door te gaan.</strong
>
</noscript>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>