-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
37 lines (27 loc) · 933 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
26
27
28
29
30
31
32
33
34
35
36
37
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>RiotControl Demo</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="todo.css">
<!--[if lt IE 9]>
<script src="js/es5-shim.js"></script>
<script src="js/html5-shiv.js"></script>
<script>html5.addElements('todoapp')</script>
<![endif]-->
</head>
<body>
<todoapp></todoapp>
<a href="https://github.com/agershun/tsore">View on GitHub</a>
<p>Based on the demo from <a href="https://github.com/jimsparkman/RiotControl">RiotControl</a></p>
<script type="riot/tag" src="todo.tag"></script>
<script type="riot/tag" src="todoapp.tag"></script>
<script src="../riot+compiler.js"></script>
<script src="../tsore.js"></script>
<script src="todostore.js"></script>
<script>
riot.mount('todoapp') // Kickoff the Riot app.
</script>
</body>
</html>