Skip to content

Instantly share code, notes, and snippets.

@panw
Last active August 29, 2015 14:04
Show Gist options
  • Save panw/2a042f142d4242715bbd to your computer and use it in GitHub Desktop.
Save panw/2a042f142d4242715bbd to your computer and use it in GitHub Desktop.
<head>
<title>Grocery List</title>
</head>
<body>
<!-- render template name groceryList -->
{{> groceryList}}
</body>
<!-- define template name groceryList -->
<template name="groceryList">
<ul>
<!-- loop through all entries in the Item Collection -->
{{#each items}}
<!-- render the current items name -->
<li class="list-item" id="{{_id}}"><input type="checkbox" value="{{name}}">{{name}}</li>
{{/each}}
</ul>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment