Skip to content

Instantly share code, notes, and snippets.

@mplatts
Last active August 29, 2015 14:09
Show Gist options
  • Save mplatts/75249153d76527e18d17 to your computer and use it in GitHub Desktop.
Save mplatts/75249153d76527e18d17 to your computer and use it in GitHub Desktop.
events 3
<!-- client/views/team.html -->
<template name="team">
<li>{{name}}</li>
</template>
<!-- client/views/teams.html -->
<template name="teams">
<h3>Teams</h3>
{{#if creating}}
<form class="form-create">
<input name="name" type="text">
<button type="submit">Submit</button>
<a class="cancel" href="#">Cancel</a>
</form>
{{else}}
<a class="create" href="#">Create</a>
{{/if}}
<ul>
{{#each teams}}
{{> team}}
{{/each}}
</ul>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment