-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
25 lines (22 loc) · 1023 Bytes
/
index.html
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
<!DOCTYPE html>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="mobile-web-app-capable" content="yes">
<!-- web technologies are awesome... -->
<!-- TODO link for the fancy app that generates these -->
<!-- <link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" href="/favicon/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="/favicon/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="/favicon/manifest.json">
<link rel="mask-icon" href="/favicon/safari-pinned-tab.svg" color="#002b36">
<meta name="msapplication-config" content="/favicon/browserconfig.xml">
<meta name="theme-color" content="#002b36">
-->
<link rel="stylesheet" href="style.css" />
<title>Tasks</title>
<body>
<noscript>This application requires JavaScript.</noscript>
<div id="app"></div>
<script src="bundle.js"></script>
<script>Elm.Main.embed(document.querySelector("#app"));</script>
</body>