Created
July 28, 2015 21:57
-
-
Save jaywon/53cf09b3da425d7fe59a 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>post-me-up</title> | |
| <link href='http://fonts.googleapis.com/css?family=Open+Sans:400italic,400' rel='stylesheet' type='text/css'> | |
| </head> | |
| <body> | |
| <h1>Post It Here</h1> | |
| {{> posterBoard}} | |
| </body> | |
| <template name="posterBoard"> | |
| <div class="input"> | |
| <span> | |
| <input type="text" id="message" maxlength="30"> | |
| </span> | |
| <span> | |
| <a href="#" id="save">Save</a> | |
| </span> | |
| <span></span> | |
| </div> | |
| <div class="notes"> | |
| {{#each notes}} | |
| {{> note}} | |
| {{/each}} | |
| </div> | |
| </template> | |
| <template name="note"> | |
| <div class="note"> | |
| <div class="message">{{message}}</div> | |
| <div class="delete">x</div> | |
| </div> | |
| </template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment