Skip to content

Instantly share code, notes, and snippets.

@vinyll
Last active August 29, 2015 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vinyll/f549216950f9542ebeda to your computer and use it in GitHub Desktop.
Save vinyll/f549216950f9542ebeda to your computer and use it in GitHub Desktop.
/*
We presume here that the `Pictures` collection has _url_ and _name_ attributes.
*/
Template.mypictures.helpers({
pictureAttributes: function(picture) {
var pic = picture.hash.picture;
return {
url: pic.url,
title: pic.name
};
}
});
<template name="mypictures">
{{#each pictures}}
<img {{pictureAttributes picture=this}} />
{{/each}}
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment