Skip to content

Instantly share code, notes, and snippets.

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 simpleprogrammer-shared/e9845977befe0ec24598965abdb29291 to your computer and use it in GitHub Desktop.
Save simpleprogrammer-shared/e9845977befe0ec24598965abdb29291 to your computer and use it in GitHub Desktop.
Getting Started With Meteor Tutorial (In the Cloud) 3
<head>
<title>Spartan TODO</title>
</head>
<body>
<h1>DO OR DIE!</h1>
{{> list}}
{{> controls }}
</body>
<template name="list">
<ul>
{{#each items}}
<li>{{description}}</li>
{{/each}}
</ul>
</template>
<template name="controls">
<form>
<input type="text" id="newItem" />
<input type="submit" id="add" value="Add" />
</form>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment