-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (59 loc) · 2.21 KB
/
Copy pathindex.html
File metadata and controls
61 lines (59 loc) · 2.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8" />
<title>HomeQuery</title>
<meta name="author" content="Omer">
<meta name="description" content="Searching for things made a little easier.">
<meta name="theme-color" content="#111111">
<link href="https://fonts.googleapis.com/css?family=Raleway&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Domine&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" media="screen" href="/styles/home.css" />
<link rel="manifest" href="/manifest.json">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="/icons/icon-144.png">
<link rel="apple-touch-startup-image" href="/icon-512.png">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link rel="modulepreload" href="/scripts/home/buttons.mjs">
<link rel="modulepreload" href="/scripts/home/app.mjs">
<link rel="modulepreload" href="/scripts/state.mjs">
</head>
<body>
<main>
<img class="wordmark" src="/images/wordmark.svg" alt="Wordmark">
<p class="description">
Help save on pointless rummaging in boxes by organising your DVDs and books into an easily accessible list.
</p>
<span class="error"></span>
<div class="account">
<button class="signin">Sign in</button>
<button class="signup">Sign up</button>
</div>
</main>
<div class="theme">
<button></button>
</div>
<div class="github">
<a href="https://github.com/omerismyname/homequery-app">
<span>View the code on GitHub</span>
</a>
</div>
<script>
if ("serviceWorker" in navigator) {
window.addEventListener("load", () => {
navigator.serviceWorker.register("/sw.js")
.then(reg => {
console.log("Registered");
})
.catch(err => {
console.log("Registration failed.\n" + err);
});
});
}
</script>
<script type="text/javascript" src="/scripts/home/theme.js"></script>
<script type="module" src="/scripts/home/app.mjs"></script>
</body>
</html>