2014-10-10 18:54:07 +04:00
|
|
|
// # Ghost Foot Helper
|
|
|
|
// Usage: `{{ghost_foot}}`
|
|
|
|
//
|
|
|
|
// Outputs scripts and other assets at the bottom of a Ghost theme
|
|
|
|
//
|
|
|
|
// We use the name ghost_foot to match the helper for consistency:
|
|
|
|
// jscs:disable requireCamelCaseOrUpperCaseIdentifiers
|
2017-04-04 19:07:35 +03:00
|
|
|
var proxy = require('./proxy'),
|
2017-03-23 22:00:58 +03:00
|
|
|
_ = require('lodash'),
|
2017-04-04 19:07:35 +03:00
|
|
|
SafeString = proxy.SafeString,
|
|
|
|
filters = proxy.filters,
|
|
|
|
settingsCache = proxy.settingsCache;
|
2014-10-10 18:54:07 +04:00
|
|
|
|
2017-04-04 19:07:35 +03:00
|
|
|
module.exports = function ghost_foot() {
|
2017-03-23 22:00:58 +03:00
|
|
|
var foot = [],
|
|
|
|
codeInjection = settingsCache.get('ghost_foot');
|
|
|
|
|
|
|
|
if (!_.isEmpty(codeInjection)) {
|
|
|
|
foot.push(codeInjection);
|
|
|
|
}
|
2014-10-10 18:54:07 +04:00
|
|
|
|
2017-03-23 22:00:58 +03:00
|
|
|
return filters
|
|
|
|
.doFilter('ghost_foot', foot)
|
|
|
|
.then(function (foot) {
|
|
|
|
return new SafeString(foot.join(' ').trim());
|
|
|
|
});
|
2014-10-10 18:54:07 +04:00
|
|
|
};
|