2014-10-10 15:54:07 +01:00
|
|
|
// # Ghost Foot Helper
|
|
|
|
// Usage: `{{ghost_foot}}`
|
|
|
|
//
|
|
|
|
// Outputs scripts and other assets at the bottom of a Ghost theme
|
2017-04-04 17:07:35 +01:00
|
|
|
var proxy = require('./proxy'),
|
2017-03-23 19:00:58 +00:00
|
|
|
_ = require('lodash'),
|
2017-04-04 17:07:35 +01:00
|
|
|
SafeString = proxy.SafeString,
|
|
|
|
settingsCache = proxy.settingsCache;
|
2014-10-10 15:54:07 +01:00
|
|
|
|
2017-11-01 13:44:54 +00:00
|
|
|
// We use the name ghost_foot to match the helper for consistency:
|
|
|
|
module.exports = function ghost_foot(options) { // eslint-disable-line camelcase
|
2017-03-23 19:00:58 +00:00
|
|
|
var foot = [],
|
2017-08-02 13:38:19 +04:00
|
|
|
globalCodeinjection = settingsCache.get('ghost_foot'),
|
|
|
|
postCodeinjection = options.data.root && options.data.root.post ? options.data.root.post.codeinjection_foot : null;
|
2017-03-23 19:00:58 +00:00
|
|
|
|
2017-08-02 15:06:51 +04:00
|
|
|
if (!_.isEmpty(globalCodeinjection)) {
|
|
|
|
foot.push(globalCodeinjection);
|
|
|
|
}
|
|
|
|
|
2017-08-02 13:38:19 +04:00
|
|
|
if (!_.isEmpty(postCodeinjection)) {
|
|
|
|
foot.push(postCodeinjection);
|
2017-03-23 19:00:58 +00:00
|
|
|
}
|
2014-10-10 15:54:07 +01:00
|
|
|
|
2019-04-15 16:15:32 +02:00
|
|
|
return new SafeString(foot.join(' ').trim());
|
2014-10-10 15:54:07 +01:00
|
|
|
};
|