Ghost/core/server/helpers/template.js
Hannah Wolfe 395079cd2f Unify code for picking a template to render with
refs #5091

- 100% coverage for new frontend/templates file
- new module handles the logic for determining which template to render with
2015-12-01 12:05:46 +08:00

26 lines
712 B
JavaScript

var templates = {},
hbs = require('express-hbs'),
errors = require('../errors');
// ## Template utils
// Execute a template helper
// All template helpers are register as partial view.
templates.execute = function (name, context, options) {
var partial = hbs.handlebars.partials[name];
if (partial === undefined) {
errors.logAndThrowError('Template ' + name + ' not found.');
return;
}
// If the partial view is not compiled, it compiles and saves in handlebars
if (typeof partial === 'string') {
hbs.registerPartial(partial);
}
return new hbs.handlebars.SafeString(partial(context, options));
};
module.exports = templates;