aboutsummaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorJoris Guyonvarch2015-03-16 00:15:05 +0100
committerJoris Guyonvarch2015-03-16 00:15:05 +0100
commitcd3b37adebca99138fad1acca37908183036ace9 (patch)
treed566ae0564d82ab94901e4deda98f36abd22ad2d /index.html
Initial commit, can create and name 5 minute timers, can toggle running state
Diffstat (limited to 'index.html')
-rw-r--r--index.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..96f8934
--- /dev/null
+++ b/index.html
@@ -0,0 +1,24 @@
+<!doctype HTML>
+
+<html>
+
+ <head>
+ <title>Timer</title>
+ <meta charset="utf-8">
+ <link rel="stylesheet" href="design/reset.css">
+ <link rel="stylesheet" href="design/design.css">
+ <link rel="stylesheet" href="design/font-awesome/css/font-awesome.min.css">
+ <link rel="icon" type="image/png" href="images/icon.png">
+ <script src="elm.js"></script>
+ </head>
+
+ <body>
+ </body>
+
+ <script>
+ Elm.fullscreen(Elm.Main, {
+ initialTime: new Date().getTime()
+ });
+ </script>
+
+</html>