// Handlebar helpers
Handlebars.registerHelper('well', function(options) {
return '
' + options.fn(this) + '
';
});
Handlebars.registerHelper('well-sm', function(options) {
return '' + options.fn(this) + '
';
});
Handlebars.registerHelper('well-lg', function(options) {
return '' + options.fn(this) + '
';
});