Last active
August 29, 2015 14:09
-
-
Save mplatts/75249153d76527e18d17 to your computer and use it in GitHub Desktop.
events 3
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
<!-- client/views/team.html --> | |
<template name="team"> | |
<li>{{name}}</li> | |
</template> |
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
<!-- 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