]> git.scottworley.com Git - vopamoi/blobdiff - index.html
Modern web boilerplate
[vopamoi] / index.html
index 5721f962743b7f78cceae61838adacc8155e563f..92c6e5269efa90e0c5da376c0421ca56419e76b0 100644 (file)
@@ -1,11 +1,19 @@
-<!doctype html>
+<!DOCTYPE html>
 <html>
   <head>
+    <meta charset="utf-8"/>
+    <meta name="viewport" content="width=device-width, initial-scale=1">
     <script src="vopamoi.js" defer="true"></script>
+    <link rel="stylesheet" href="vopamoi.css"/>
+    <style id="viewStyle">
+      .task:not([data-state=todo]) { display: none }
+      :root { --view-state-indicator-color: white; }
+    </style>
   </head>
-  <body>
-    <form onsubmit="return browserCreateTask(this);">
-      <input name="taskName">
-    </form>
+  <body onload="browserInit();">
+    <div id="ui">
+      <input id="taskName" name="taskName">
+      <div id="tasks"></div>
+    </div>
   </body>
 </html>