Skip to content

Instantly share code, notes, and snippets.

@pkieltyka
Created January 20, 2012 20:02
Show Gist options
  • Select an option

  • Save pkieltyka/1649287 to your computer and use it in GitHub Desktop.

Select an option

Save pkieltyka/1649287 to your computer and use it in GitHub Desktop.
<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