Skip to content

Instantly share code, notes, and snippets.

@panw
Last active August 29, 2015 14:04
Show Gist options
  • Save panw/fd36d11f554bca76d500 to your computer and use it in GitHub Desktop.
Save panw/fd36d11f554bca76d500 to your computer and use it in GitHub Desktop.
Template with pre-filled hard coded list for rendering and making sure things work.
<head>
<title>Grocery List</title>
</head>
<body>
{{> groceryList}}
</body>
<template name="groceryList">
<ul>
<li><input type="checkbox" value="apples">Apples</li>
<li><input type="checkbox" value="bananas">Bananas</li>
<li><input type="checkbox" value="milk">Milk</li>
<li><input type="checkbox" value="bread">Bread</li>
</ul>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment