Skip to content

Instantly share code, notes, and snippets.

@jgdovin
Created March 31, 2015 15:43
Show Gist options
  • Save jgdovin/28797906116792c602e3 to your computer and use it in GitHub Desktop.
Save jgdovin/28797906116792c602e3 to your computer and use it in GitHub Desktop.
Template.myTemplate.helpers({
evaluate: function(){
if (this and that) {
return true;
} else {
return false;
}
}
});
in template:
<template name="myTemplate">
{{#if evaluate}}
my stuff
{{/if}}
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment