re-frame/examples/todomvc/resources/public/index.html

19 lines
355 B
HTML
Raw Normal View History

2015-02-26 01:51:59 +00:00
<!doctype html>
<html>
<head>
<meta charset="utf-8">
2015-03-01 20:56:47 +00:00
<title>Reframe Todomvc</title>
2015-02-26 01:51:59 +00:00
<link rel="stylesheet" href="todos.css">
</head>
<body>
<div id="app">
</div>
<script src="js/client.js"></script>
2015-02-26 01:51:59 +00:00
<script>
2015-03-01 20:56:47 +00:00
window.onload = function () {
2015-03-06 13:39:09 +00:00
todomvc.core.main();
2015-03-01 20:56:47 +00:00
}
2015-02-26 01:51:59 +00:00
</script>
</body>
</html>