Gregg8 273d32ef70 Changes:
- Added figwheel support for todomvc sample and updated README.
 - Updated lein-figwheel "0.2.3-SNAPSHOT" to "0.2.6" to match the dependency in simple example project.clj and improved README.
2015-05-12 13:17:31 +10:00

19 lines
355 B
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Reframe Todomvc</title>
<link rel="stylesheet" href="todos.css">
</head>
<body>
<div id="app">
</div>
<script src="js/client.js"></script>
<script>
window.onload = function () {
todomvc.core.main();
}
</script>
</body>
</html>