Skip to content

Instantly share code, notes, and snippets.

@masudiiuc
Created July 31, 2015 04:30
Show Gist options
  • Save masudiiuc/0a87468c9365de339fce to your computer and use it in GitHub Desktop.
Save masudiiuc/0a87468c9365de339fce to your computer and use it in GitHub Desktop.
Rendering Template
function render (templateName, data) {
//Configuration variable for Template
_.templateSettings.variable = "data";
var template = _.template(templateName);
return template(data);
}
render(Templates.sidebar, {'content' : 'YOUR_CONTENT'};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment