-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
55 lines (52 loc) · 2.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Spanish-Quizzer</title>
<meta name="description" content="Quiz yourself on Spanish vocabulary and conjugations through a free and highly customizable web interface.">
<meta name="viewport" content="width=device-width">
<meta name="theme-color" content="#009bc2">
<link rel="manifest" href="manifest.json">
<link rel="icon" type="image/png" href="images/favicon-32.png">
<link rel="apple-touch-icon" sizes="180x180" href="images/favicon-180.png">
<link rel="stylesheet" href="vendor/data-table.min.css">
<link rel="stylesheet" href="css/global.css">
<link rel="stylesheet" href="css/app.css">
<link rel="stylesheet" href="css/filtersPage.css">
<link rel="stylesheet" href="css/settingsPage.css">
<link rel="stylesheet" href="css/quizzer.css">
<link rel="stylesheet" href="css/reference.css">
<script src="vendor/diff.js"></script>
<script src="vendor/data-table.min.js"></script>
<script src="vendor/papaparse.js"></script>
<script src="vendor/vue.js"></script>
<script src="vendor/vue-router.js"></script>
<script src="js/global.js"></script>
<script src="js/filters.js"></script>
<script src="js/filtersPage.js"></script>
<script src="js/settingsPage.js"></script>
<script src="js/quizzer.js"></script>
<script src="js/reference.js"></script>
<script src="js/app.js"></script>
</head>
<body onload="Load();">
<div id="app">
<noscript>
<header>Spanish-Quizzer</header>
<div id="jsError">
<h1>You must have JavaScript enabled to run Spanish-Quizzer.</h1>
<p>Spanish-Quizzer uses JavaScript to load vocab, apply filters, and check your answers.</p>
</div>
</noscript>
<keep-alive exclude="quizzerPage">
<router-view @back="Back"></router-view>
</keep-alive>
</div>
<script>
// Register service worker
if ("serviceWorker" in navigator && (localStorage.getItem("service-worker") === "true" || !window.location.href.includes("localhost"))) {
navigator.serviceWorker.register("./service-worker.js");
}
</script>
</body>
</html>