|
|
|
@ -9,6 +9,14 @@
|
|
|
|
|
return (config.isLoggedIn || !config.privateUserInfo);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
helpers.buildMetaTag = function(tag) {
|
|
|
|
|
var name = tag.name ? 'name="' + tag.name + '" ' : '',
|
|
|
|
|
property = tag.property ? 'property="' + tag.property + '" ' : '',
|
|
|
|
|
content = tag.content ? 'content="' + tag.content + '" ' : '';
|
|
|
|
|
|
|
|
|
|
return '<meta ' + name + property + content + ' />';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -21,6 +29,7 @@
|
|
|
|
|
var templates = templates || require('./templates');
|
|
|
|
|
|
|
|
|
|
templates.registerHelper('displayUsersLink', helpers.displayUsersLink);
|
|
|
|
|
templates.registerHelper('buildMetaTag', helpers.buildMetaTag);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
})('undefined' === typeof module ? {
|
|
|
|
|