Last active
August 29, 2015 14:07
-
-
Save jsonmez/061d183d3958825a2b67 to your computer and use it in GitHub Desktop.
Spartan TODO List: Hard coded HTML UI
This file contains 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>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