Last active
August 29, 2015 14:02
-
-
Save geekygrappler/7198b99b235399c92314 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<section id="todoapp"> | |
<header id="header"> | |
<h1>todos</h1> | |
<input type="text" id="new-todo" placeholder="What needs to be done?" /> | |
</header> | |
<section id="main"> | |
<ul id="todo-list"> | |
<li class="completed"> | |
<input type="checkbox" class="toggle"> | |
<label>Learn Ember.js</label><button class="destroy"></button> | |
</li> | |
<li> | |
<input type="checkbox" class="toggle"> | |
<label>...</label><button class="destroy"></button> | |
</li> | |
<li> | |
<input type="checkbox" class="toggle"> | |
<label>Profit!</label><button class="destroy"></button> | |
</li> | |
</ul> | |
<input type="checkbox" id="toggle-all"> | |
</section> | |
<footer id="footer"> | |
<span id="todo-count"> | |
<strong>2</strong> todos left | |
</span> | |
<ul id="filters"> | |
<li> | |
<a href="all" class="selected">All</a> | |
</li> | |
<li> | |
<a href="active">Active</a> | |
</li> | |
<li> | |
<a href="completed">Completed</a> | |
</li> | |
</ul> | |
<button id="clear-completed"> | |
Clear completed (1) | |
</button> | |
</footer> | |
</section> | |
<footer id="info"> | |
<p>Double-click to edit a todo</p> | |
</footer> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment