Created
January 20, 2012 20:02
-
-
Save pkieltyka/1649287 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
| <script type="text/x-handlebars" data-template-name="list-view"> | |
| <ul> | |
| {{#each posts}} | |
| {{#view MyApp.PostView contentBinding="this"}} | |
| {{#with content}} | |
| <li class="post"> | |
| <a href="#"> | |
| <img data-id="{{unbound id}}" src="{{unbound embed_url}}"> | |
| <span class="meta">{{unbound short_text}}</span> | |
| </a> | |
| </li> | |
| {{/with}} | |
| {{/view}} | |
| {{/each}} | |
| </ul> | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment