This repository has been archived by the owner on Dec 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (46 loc) · 2.15 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
50
51
52
53
54
55
56
57
<!doctype html>
<html lang="de">
<head>
<title>FH Stundenplan</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes">
<meta name="description" content="Die FH Dortmund Studenplan Web-App. Von Studenten für Studenten.">
<meta name="theme-color" content="#F44336">
<meta name="mobile-web-app-capable" content="yes">
<meta name="application-name" content="Stundenplan">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="Stundenplan">
<!-- See https://goo.gl/OOhYW5 -->
<link rel="manifest" href="manifest.json">
<!-- icons -->
<link rel="icon" href="icons/favicon.ico">
<link rel="apple-touch-icon" href="icons/icon48x48.png">
<link rel="apple-touch-icon" sizes="72x72" href="icons/icon72x72.png">
<link rel="apple-touch-icon" sizes="96x96" href="icons/icon96x96.png">
<link rel="apple-touch-icon" sizes="144x144" href="icons/icon144x144.png">
<link rel="apple-touch-icon" sizes="192x192" href="icons/icon192x192.png">
<!-- style -->
<link rel="stylesheet" type="text/css" href="src/style/style.css">
<link rel="stylesheet" type="text/css" href="src/style/roboto.css">
<script type="module" src="src/fh-stundenplan-app/fh-stundenplan-app.js"></script>
<script src="node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
<!-- google -->
<meta name="robots" content="noindex">
<meta name="googlebot" content="noindex">
<noscript><p style="text-align: center;font-size: 1.5em;margin-top: 15%;">Your browser does not support <b>JavaScript</b> or please enable it to use this site, sorry! 😀<p></noscript>
</head>
<body>
<!--googleoff: index-->
<fh-stundenplan-app id="app"></fh-stundenplan-app>
<script>
//csp ready
if ("serviceWorker" in navigator) {
window.addEventListener("load", function() {
navigator.serviceWorker.register("service-worker.js", {
scope: "/",
});
});
}
</script>
</body>
</html>