mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 09:52:06 +03:00
df7e64fafa
refs #10790 - Moved /core/apps into core/frontend - Moved /core/server/helpers to /core/frontend/helpers along with /core/server/services/themes - Changed helper location in overrides - Moved /core/server/services/routing to /core/frontend/services - Moved /core/server/services/url to /core/frontend/services - Moved /core/server/data/meta to /core/frontend/meta - Moved /core/server/services/rss to /core/frontend/services - Moved /core/server/data/xml to /core/frontend/services
26 lines
840 B
JavaScript
26 lines
840 B
JavaScript
// # Ghost Foot Helper
|
|
// Usage: `{{ghost_foot}}`
|
|
//
|
|
// Outputs scripts and other assets at the bottom of a Ghost theme
|
|
var proxy = require('./proxy'),
|
|
_ = require('lodash'),
|
|
SafeString = proxy.SafeString,
|
|
settingsCache = proxy.settingsCache;
|
|
|
|
// 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());
|
|
};
|