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
14 lines
462 B
JavaScript
14 lines
462 B
JavaScript
// # Meta Description Helper
|
|
// Usage: `{{meta_description}}`
|
|
//
|
|
// Page description used for sharing and SEO
|
|
const {metaData} = require('../services/proxy');
|
|
const {getMetaDataDescription} = metaData;
|
|
|
|
// We use the name meta_description to match the helper for consistency:
|
|
module.exports = function meta_description(options) { // eslint-disable-line camelcase
|
|
options = options || {};
|
|
|
|
return getMetaDataDescription(this, options.data.root) || '';
|
|
};
|