Skip to content

Instantly share code, notes, and snippets.

@shu0115
Last active August 29, 2015 14:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shu0115/710d955200ef40c26bd2 to your computer and use it in GitHub Desktop.
Save shu0115/710d955200ef40c26bd2 to your computer and use it in GitHub Desktop.
<head>
<title>Todo List</title>
</head>
<body>
<div class="container">
<header>
<h1>Todo List</h1>
</header>
<ul>
{{#each tasks}}
{{> task}}
{{/each}}
</ul>
</div>
</body>
<template name="task">
<li>{{text}}</li>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment