mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
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
23 lines
800 B
JavaScript
23 lines
800 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
|
|
var foot = [],
|
|
globalCodeinjection = settingsCache.get('ghost_foot'),
|
|
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());
|
|
};
|