index.html 1.29 KB
Newer Older
1 2 3 4 5
<!doctype html>
<html lang="en" data-framework="react">
	<head>
		<meta charset="utf-8">
		<title>React • TodoMVC</title>
6 7
		<link rel="stylesheet" href="node_modules/todomvc-common/base.css">
		<link rel="stylesheet" href="node_modules/todomvc-app-css/index.css">
8 9
	</head>
	<body>
10 11
		<section class="todoapp"></section>
		<footer class="info">
12 13
			<p>Double-click to edit a todo</p>
			<p>Created by <a href="http://github.com/petehunt/">petehunt</a></p>
14
			<p>Part of <a href="http://todomvc.com">TodoMVC</a></p>
15
		</footer>
16

17 18
		<script src="node_modules/todomvc-common/base.js"></script>
		<script src="node_modules/react/dist/react-with-addons.js"></script>
19
		<script src="node_modules/classnames/index.js"></script>
20 21
		<script src="node_modules/react/dist/JSXTransformer.js"></script>
		<script src="node_modules/director/build/director.js"></script>
22

23
		<script src="js/utils.js"></script>
24
		<script src="js/todoModel.js"></script>
25 26 27
		<!-- jsx is an optional syntactic sugar that transforms methods in React's
		`render` into an HTML-looking format. Since the two models above are
		unrelated to React, we didn't need those transforms. -->
28 29 30
		<script type="text/jsx" src="js/todoItem.jsx"></script>
		<script type="text/jsx" src="js/footer.jsx"></script>
		<script type="text/jsx" src="js/app.jsx"></script>
31 32
	</body>
</html>