Created
November 14, 2014 04:29
-
-
Save shu0115/d031a0806a3e6932e958 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<head> | |
<title>Todo List</title> | |
</head> | |
<body> | |
<div class="container"> | |
<header> | |
<h1>Todo List ({{incompleteCount}})</h1> | |
<label class="hide-completed"> | |
<input type="checkbox" checked="{{hideCompleted}}" /> | |
Hide Completed Tasks | |
</label> | |
<form class="new-task"> | |
<input type="text" name="text" placeholder="Type to add new tasks" /> | |
</form> | |
</header> | |
<ul> | |
{{#each tasks}} | |
{{> task}} | |
{{/each}} | |
</ul> | |
</div> | |
</body> | |
<template name="task"> | |
<li class="{{#if checked}}checked{{/if}}"> | |
<button class="delete">×</button> | |
<input type="checkbox" checked="{{checked}}" class="toggle-checked" /> | |
<span class="text">{{text}}</span> | |
</li> | |
</template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment