Commit 6fa1cbc9 authored by Shlomi Asaf's avatar Shlomi Asaf Committed by Sindre Sorhus

Backbone Require - Fix incorrect end-tags. Fixes #243

parent f04847a8
<!doctype html> <!doctype html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Backbone.js</title> <title>Backbone.js</title>
<link rel="stylesheet" href="../../assets/base.css"/> <link rel="stylesheet" href="../../assets/base.css">
<script data-main="js/main" src="js/libs/require/require.js"></script> <script data-main="js/main" src="js/libs/require/require.js"></script>
</head> </head>
<body> <body>
<section id="todoapp">
<section id="todoapp"> <header id="header">
<header id="header"> <h1>todos</h1>
<h1>todos</h1> <input id="new-todo" placeholder="What needs to be done?" autofocus>
<input id="new-todo" placeholder="What needs to be done?" autofocus> </header>
</header> <section id="main">
<section id="main"> <input id="toggle-all" type="checkbox">
<input id="toggle-all" type="checkbox"> <label for="toggle-all">Mark all as complete</label>
<label for="toggle-all">Mark all as complete</label> <ul id="todo-list"></ul>
<ul id="todo-list"></ul> </section>
</section> <footer id="footer"></footer>
<footer id="footer"></div> </section>
</section> <footer id="info">
<div id="info"> <p>Double-click to edit a todo</p>
<p>Double-click to edit a todo</p> <p>Written by <a href="http://addyosmani.github.com/todomvc/">Addy Osmani</a></p>
<p>Written by <a href="http://addyosmani.github.com/todomvc/">Addy Osmani</a></p> <p>Part of <a href="http://todomvc.com">TodoMVC</a></p>
<p>Part of <a href="http://todomvc.com">TodoMVC</a></p> </footer>
</footer>
</body> </body>
</html> </html>
\ No newline at end of file
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment