mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
9d7665bb43
refs https://github.com/TryGhost/Ghost/issues/10318 - settings key rename was missed in the `ghost_head` and `ghost_foot` helpers
24 lines
815 B
JavaScript
24 lines
815 B
JavaScript
// # Ghost Foot Helper
|
|
// Usage: `{{ghost_foot}}`
|
|
//
|
|
// Outputs scripts and other assets at the bottom of a Ghost theme
|
|
const {SafeString, settingsCache} = require('../services/proxy');
|
|
const _ = require('lodash');
|
|
|
|
// We use the name ghost_foot to match the helper for consistency:
|
|
module.exports = function ghost_foot(options) { // eslint-disable-line camelcase
|
|
const foot = [];
|
|
|
|
const globalCodeinjection = settingsCache.get('codeinjection_foot');
|
|
const postCodeinjection = options.data.root && options.data.root.post ? options.data.root.post.codeinjection_foot : null;
|
|
|
|
if (!_.isEmpty(globalCodeinjection)) {
|
|
foot.push(globalCodeinjection);
|
|
}
|
|
|
|
if (!_.isEmpty(postCodeinjection)) {
|
|
foot.push(postCodeinjection);
|
|
}
|
|
|
|
return new SafeString(foot.join(' ').trim());
|
|
};
|