Commit a9468fbc authored by Aaron Boushley's avatar Aaron Boushley

Updating index.html to match template.

parent b600825f
<!DOCTYPE html> <!doctype html>
<html> <html lang="en">
<head>
<head> <meta charset="utf-8">
<title>Backbone.js</title> <title>Backbone.js</title>
<link href="css/todos.css" media="all" rel="stylesheet" type="text/css"/> <link rel="stylesheet" href="css/todos.css"/>
<script src="js/json2.js"></script> </head>
<script src="js/jquery-1.6.4.min.js"></script> <body>
<script src="js/underscore-1.1.6.js"></script>
<script src="js/backbone.js"></script>
<script src="js/backbone-localstorage.js"></script>
<script src="js/todos.js"></script>
</head>
<body>
<!-- Todo App Interface -->
<div id="todoapp"> <div id="todoapp">
<header>
<div class="title">
<h1>Todos</h1> <h1>Todos</h1>
</div> <input id="new-todo" type="text" placeholder="What needs to be done?">
<div class="content">
<div id="create-todo">
<input id="new-todo" placeholder="What needs to be done?" type="text" />
<span class="ui-tooltip-top" style="display:none;">Press Enter to save this task</span> <span class="ui-tooltip-top" style="display:none;">Press Enter to save this task</span>
</header>
<section id="main">
<input id="toggle-all" type="checkbox">
<label for="toggle-all">Mark all as complete</label>
<ul id="todo-list">
</ul>
</section>
<footer>
<a id="clear-completed">Clear completed</a>
<div id="todo-count"></div>
</footer>
</div> </div>
<div id="instructions">
<div id="todos"> Double-click to edit a todo.
<input class="check mark-all-done" type="checkbox"/>
<label for="check-all">Mark all as complete</label>
<ul id="todo-list"></ul>
</div>
<div id="todo-stats"></div>
</div>
</div> </div>
<div id="credits"> <div id="credits">
Created by Created by
<br /> <br />
<a href="http://jgn.me/">J&eacute;r&ocirc;me Gravel-Niquet</a>. <br />Cleanup, edits: <a href="http://addyosmani.com">Addy Osmani</a>. <a href="http://jgn.me/">J&eacute;r&ocirc;me Gravel-Niquet</a>. <br />Cleanup, edits: <a href="http://addyosmani.com">Addy Osmani</a>.
</div> </div>
<script src="js/json2.js"></script>
<script src="js/jquery-1.6.4.min.js"></script>
<script src="js/underscore-1.1.6.js"></script>
<script src="js/backbone.js"></script>
<script src="js/backbone-localstorage.js"></script>
<script src="js/todos.js"></script>
<!-- Templates --> <!-- Templates -->
<script type="text/template" id="item-template"> <script type="text/template" id="item-template">
<div class="todo <%= done ? 'done' : '' %>"> <li class="todo <%= done ? 'done' : '' %>">
<div class="display"> <div class="view">
<input class="check" type="checkbox" <%= done ? 'checked="checked"' : '' %> /> <input class="toggle" type="checkbox" <%= done ? 'checked="checked"' : '' %> />
<label class="todo-content"><%= content %></label> <label><%= content %></label>
<span class="todo-destroy"></span> <a class="destroy"></span>
</div>
<div class="edit">
<input class="todo-input" type="text" value="<%= content %>" />
</div>
</div> </div>
<input class="edit" type="text" value="<%= content %>" />
</li>
</script> </script>
<script type="text/template" id="stats-template"> <script type="text/template" id="stats-template">
<% if (total) { %>
<span class="todo-count">
<span class="number"><%= remaining %></span>
<span class="word"><%= remaining == 1 ? 'item' : 'items' %></span> left.
</span>
<% } %>
<% if (done) { %> <% if (done) { %>
<span class="todo-clear"> <a id="clear-completed">Clear <%= done %> completed <%= done == 1 ? 'item' : 'items' %></a>
<a href="#"> <% } %>
Clear <span class="number-done"><%= done %></span> <% if (total) { %>
completed <span class="word-done"><%= done == 1 ? 'item' : 'items' %></span> <div class="todo-count"><%= remaining %> <%= remaining == 1 ? 'item' : 'items' %> left.</div>
</a>
</span>
<% } %> <% } %>
</script> </script>
</body> </body>
</html> </html>
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