-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (78 loc) · 2.05 KB
/
index.html
File metadata and controls
79 lines (78 loc) · 2.05 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!doctype html>
<html
lang="en"
class="notranslate"
translate="no"
>
<head>
<title>Remaining (ETA) and Multi-Timer</title>
<link
rel="apple-touch-icon"
sizes="180x180"
href="/icons/apple-touch-icon.png"
/>
<link
rel="icon"
href="/icons/favicon.ico"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/icons/favicon-16x16.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/icons/favicon-32x32.png"
/>
<meta charset="UTF-8" />
<meta
name="author"
content="Dr. Torben Menke"
/>
<meta
name="google"
content="notranslate"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<meta
name="description"
content="Remaining: Calculate remaining (waiting) time / estimated time of arrival (ETA) via weighted linear regression. Use case: standing in a queue, kids homework, 34 of 123 done. Multi-Timer: Multiple countdown timers."
/>
<meta
name="keywords"
content="eta, timer, stopwatch, Multi-Timer, multi timer, countdown, items per minute, estimated time of arrival, homework, idle game countdown, OpenSource, free"
/>
<!-- Matomo -->
<script>
var _paq = (window._paq = window._paq || [])
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['trackPageView'])
_paq.push(['enableLinkTracking'])
;(function () {
var u = 'https://entorb.net/stats/matomo/'
_paq.push(['setTrackerUrl', u + 'matomo.php'])
_paq.push(['setSiteId', '2'])
var d = document,
g = d.createElement('script'),
s = d.getElementsByTagName('script')[0]
g.async = true
g.src = u + 'matomo.js'
s.parentNode.insertBefore(g, s)
})()
</script>
<!-- End Matomo Code -->
</head>
<body>
<div id="app"></div>
<script
type="module"
src="/src/main.ts"
></script>
</body>
</html>