Skip to content

Instantly share code, notes, and snippets.

@jakobdamjensen
Last active August 29, 2015 14:03
Show Gist options
  • Save jakobdamjensen/14a2efeda30ed60e6b22 to your computer and use it in GitHub Desktop.
Save jakobdamjensen/14a2efeda30ed60e6b22 to your computer and use it in GitHub Desktop.
<template name="hello">
<input type="file" id="file"/>
<ul class="file-list">
{{#each files}}
<li>
{{#if isUploaded}}
<img src="{{url}}"/>
{{/if}}
</li>
{{/each}}
</ul>
</template>
Template.hello.helpers({
files: function(){
return Images.find({}, {sort: {uploadedAt: -1}});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment