index.html 869 Bytes
Newer Older
Sindre Sorhus's avatar
Sindre Sorhus committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
<!doctype html>
<html lang="en">
<head>
	<meta charset="utf-8">
	<title>Todo - CanJS with YUI</title>
	<link rel="stylesheet" href="base.css">
	<link rel="stylesheet" href="todo.css">
	<!--[if lt IE 9]>
	<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
	<![endif]-->
</head>
<body class="yui3-skin-sam">
	<div id="todoapp">
		<header>
15
			<h1>todos</h1>
Sindre Sorhus's avatar
Sindre Sorhus committed
16 17 18 19 20 21 22
			<input id="new-todo" type="text" placeholder="What needs to be done?">
		</header>
	</div>
	<div id="instructions">
		Double-click to edit a todo.
	</div>
	<div id="credits">
23 24
		<p>Created by <a href="http://bitovi.com/">Bitovi</a>.</p>
		<p>Part of <a href="http://todomvc.com">TodoMVC</a>.</p>
Sindre Sorhus's avatar
Sindre Sorhus committed
25 26
	</div>
	<script src="http://yui.yahooapis.com/3.4.1/build/yui/yui.js"></script>
27
	<script src="http://canjs.us/release/latest/can.yui.js"></script>
Sindre Sorhus's avatar
Sindre Sorhus committed
28 29
	<script src="todo.js"></script>
</body>
30
</html>