mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 17:32:15 +03:00
c902d91c81
- This fits more closely, as this service is to so with rendering helpers and small parts - Whereas we want to use "rendering" for things concerned with rendering pages
21 lines
629 B
JavaScript
21 lines
629 B
JavaScript
// # Facebook URL Helper
|
|
// Usage: `{{facebook_url}}` or `{{facebook_url author.facebook}}`
|
|
//
|
|
// Output a url for a facebook username
|
|
const {socialUrls} = require('../services/proxy');
|
|
const {localUtils} = require('../services/handlebars');
|
|
|
|
// We use the name facebook_url to match the helper for consistency:
|
|
module.exports = function facebook_url(username, options) { // eslint-disable-line camelcase
|
|
if (!options) {
|
|
options = username;
|
|
username = localUtils.findKey('facebook', this, options.data.site);
|
|
}
|
|
|
|
if (username) {
|
|
return socialUrls.facebook(username);
|
|
}
|
|
|
|
return null;
|
|
};
|