Skip to content

Instantly share code, notes, and snippets.

@mplatts
Created November 18, 2014 05:47
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 mplatts/4e0eedfd6003da402fde to your computer and use it in GitHub Desktop.
Save mplatts/4e0eedfd6003da402fde to your computer and use it in GitHub Desktop.
events 1
<!-- 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}}
<li>{{name}}</li>
{{/each}}
</ul>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment