Skip to content

Instantly share code, notes, and snippets.

@djbobbydrake
Last active August 29, 2015 14:14
Show Gist options
  • Save djbobbydrake/70c84d1f149dee9c1556 to your computer and use it in GitHub Desktop.
Save djbobbydrake/70c84d1f149dee9c1556 to your computer and use it in GitHub Desktop.
Hi Test
<!-- simple-todos.html -->
<head>
<title>Todo List The Real Deal</title>
</head>
<body>
<div class="container">
<header>
<h1>Todo List</h1>
<!-- add a form below the h1 -->
<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">&times;</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