35e3e0708c
- The proxy is not a helper, we want the helpers folder to only include helpers - The proxy is also meant to be the interface to Ghost for the helpers, and we want to enforce that - This is a small step on the way
12 lines
393 B
JavaScript
12 lines
393 B
JavaScript
// # Meta Title Helper
|
|
// Usage: `{{meta_title}}`
|
|
//
|
|
// Page title used for sharing and SEO
|
|
const {metaData} = require('../services/proxy');
|
|
const {getMetaDataTitle} = metaData;
|
|
|
|
// We use the name meta_title to match the helper for consistency:
|
|
module.exports = function meta_title(options) { // eslint-disable-line camelcase
|
|
return getMetaDataTitle(this, options.data.root, options);
|
|
};
|