mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-18 05:52:40 +03:00
bcf5a1bc34
refs #9178 * Add eslint deps, remove old lint deps * Add eslint config, remove old lint configs * Config for server and tests are different * Tweaked rules to suit us * Fix linting in codebase - lots of indent changes. * Fix a real broken test
12 lines
386 B
JavaScript
12 lines
386 B
JavaScript
// # 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);
|
|
};
|