-
Notifications
You must be signed in to change notification settings - Fork 0
/
todo.html
43 lines (36 loc) · 1004 Bytes
/
todo.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!doctype html>
<html lang="en_GB">
<head>
<meta charset="UTF-8">
<title>OCamlMVC</title>
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/foundation.min.css" />
<script src="js/modernizr.js"></script>
<style>
span.done
{ text-decoration: line-through; color: #999 }
span.small
{ font-size: 70% }
</style>
</head>
<body>
<div class="row">
<div class="large-12 columns">
<h1>VCR.Of (TodoListComponent)</h1>
</div>
<hr>
</div>
<div id="demo"></div>
<div class="row">
<hr>
<div class="large-12 columns">
<h4>About</h4>
<p>This is a demo of OCamlMVC, an experimental OCaml library
for writing Model-View-Controller based reactive user
interfaces for web pages.</p>
<p>Source: <a href="https://github.com/bobatkey/ocamlmvc">https://github.com/bobatkey/ocamlmvc</a></p>
</div>
</div>
<script src="todo.js"></script>
</body>
</html>