Last active
August 29, 2015 14:04
-
-
Save panw/2a042f142d4242715bbd to your computer and use it in GitHub Desktop.
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
<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