df7e64fafa
refs #10790 - Moved /core/apps into core/frontend - Moved /core/server/helpers to /core/frontend/helpers along with /core/server/services/themes - Changed helper location in overrides - Moved /core/server/services/routing to /core/frontend/services - Moved /core/server/services/url to /core/frontend/services - Moved /core/server/data/meta to /core/frontend/meta - Moved /core/server/services/rss to /core/frontend/services - Moved /core/server/data/xml to /core/frontend/services
22 lines
615 B
JavaScript
22 lines
615 B
JavaScript
// # Twitter URL Helper
|
|
// Usage: `{{twitter_url}}` or `{{twitter_url author.twitter}}`
|
|
//
|
|
// Output a url for a twitter username
|
|
var proxy = require('./proxy'),
|
|
socialUrls = proxy.socialUrls,
|
|
localUtils = proxy.localUtils;
|
|
|
|
// We use the name twitter_url to match the helper for consistency:
|
|
module.exports = function twitter_url(username, options) { // eslint-disable-line camelcase
|
|
if (!options) {
|
|
options = username;
|
|
username = localUtils.findKey('twitter', this, options.data.blog);
|
|
}
|
|
|
|
if (username) {
|
|
return socialUrls.twitter(username);
|
|
}
|
|
|
|
return null;
|
|
};
|