-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (28 loc) · 888 Bytes
/
index.html
File metadata and controls
30 lines (28 loc) · 888 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<title>TheTimeFlow</title>
<link rel="manifest" href="./manifest.webmanifest">
<meta name="theme-color" content="#0ea5e9">
<link rel="icon" href="./icons/icon-192.png">
<link rel="apple-touch-icon" href="./icons/icon-192.png">
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<main class="container">
<div class="toolbar">
<button id="summarizeBtn" class="btn">📊 Summarize</button>
<button id="addBtn" class="btn primary">Add Stopwatch</button>
</div>
<section id="list" class="list" aria-live="polite"></section>
</main>
<script>
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('./sw.js').catch(() => {});
}
</script>
<script src="./app.js"></script>
</body>
</html>