Skip to content

Instantly share code, notes, and snippets.

@tbergeron
Created August 7, 2014 21:20
Show Gist options
  • Save tbergeron/8007709e3d83dadad5f9 to your computer and use it in GitHub Desktop.
Save tbergeron/8007709e3d83dadad5f9 to your computer and use it in GitHub Desktop.
<script type="text/x-handlebars" id="entries">
<div class="list-group">
{{#each controller}}
{{partial 'entries/single' }}
{{/each}}
</div>
</script>
<script type="text/x-handlebars" id="entries/_single">
{{#link-to 'entry' this class="list-group-item"}}
<h4 class="list-group-item-heading">{{time-ago date=createdAt}}</h4>
{{/link-to}}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment