-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (50 loc) · 1.67 KB
/
index.html
File metadata and controls
53 lines (50 loc) · 1.67 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
<!doctype html>
<html lang="en" dir="ltr">
<head>
<title>Todo</title>
<link rel="shortcut icon" href="/icon-128.png" type="image/x-icon" />
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, height=device-height"
/>
<meta name="referrer" content="origin" />
<!-- Primary Meta Tags -->
<title>What Todo</title>
<meta name="title" content="What Todo 🤷♂️" />
<meta
name="description"
content="Manage your workload in your browser to keep things on track."
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://what-todo.app" />
<meta
property="og:image"
content="https://what-todo.app/screenshot.5a398b02.png"
/>
<meta property="og:title" content="What Todo 🤷♂️" />
<meta
property="og:description"
content="Manage your workload in your browser to keep things on track."
/>
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://what-todo.app/" />
<meta property="twitter:title" content="What Todo 🤷♂️" />
<meta
property="twitter:description"
content="Manage your workload in your browser to keep things on track."
/>
<meta
property="twitter:image"
content="https://what-todo.app/screenshot.5a398b02.png"
/>
</head>
<body>
<div id="app"></div>
<div id="portal"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>