Ghost/core/server/helpers/asset.js

26 lines
693 B
JavaScript
Raw Normal View History

// # Asset helper
// Usage: `{{asset "css/screen.css"}}`, `{{asset "css/screen.css" ghost="true"}}`
//
// Returns the path to the specified asset. The ghost flag outputs the asset path for the Ghost admin
var getAssetUrl = require('../data/meta/asset_url'),
hbs = require('express-hbs');
function asset(context, options) {
var isAdmin,
minify;
if (options && options.hash) {
isAdmin = options.hash.ghost;
minify = options.hash.minifyInProduction;
}
if (process.env.NODE_ENV !== 'production') {
minify = false;
}
return new hbs.handlebars.SafeString(
getAssetUrl(context, isAdmin, minify)
);
}
module.exports = asset;