0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00
ghost/core/server/helpers/meta_title.js

12 lines
386 B
JavaScript
Raw Normal View History

// # Meta Title Helper
// Usage: `{{meta_title}}`
//
// Page title used for sharing and SEO
var proxy = require('./proxy'),
getMetaDataTitle = proxy.metaData.getMetaDataTitle;
// 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);
};