-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 1.12 KB
/
index.html
File metadata and controls
26 lines (26 loc) · 1.12 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HyperApp todo</title>
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="HyperApp todo | offline">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta content="black-translucent" name="apple-mobile-web-app-status-bar-style">
<link rel="apple-touch-icon" sizes="180x180" href="./src/apple-touch-icon.png">
<link rel="icon" type="image/png" href="./src/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="./src/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="./src/manifest.webmanifest">
<link rel="mask-icon" href="./src/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="./src/favicon.ico">
<meta name="msapplication-config" content="./src/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<div id="todo">
</div>
<script type="module" src="src/index.js" async></script>
</body>
</html>