mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-30 14:22:07 +03:00
9d7049cd3f
- The helper registration code is "framework" code and very specific - At the moment the "theme engine" is full of lots of disparate theme related stuff - I'm trying to make the frontend framework code clearer and also expand it to make it more useful - The helper system now also exposes 3 methods allowing you to register a directory, a helper or an alias - I've updated the codebase to use these both for our core helpers and for "apps"
25 lines
828 B
JavaScript
25 lines
828 B
JavaScript
/**
|
|
* This is a loose concept of a frontend rendering framework
|
|
* Note: everything here gets deep-required from the theme-engine
|
|
* This indicates that the theme engine is a set of services, rather than a single service
|
|
* and could do with a further refactor.
|
|
*
|
|
* This at least keeps the deep requires in a single place.
|
|
*/
|
|
|
|
const hbs = require('./theme-engine/engine');
|
|
|
|
module.exports = {
|
|
hbs: hbs,
|
|
SafeString: hbs.SafeString,
|
|
escapeExpression: hbs.escapeExpression,
|
|
// The local template thing, should this be merged with the channels one?
|
|
templates: require('./theme-engine/handlebars/template'),
|
|
|
|
// Theme i18n is separate to common i18n
|
|
themeI18n: require('./theme-engine/i18n'),
|
|
|
|
// TODO: these need a more sensible home
|
|
localUtils: require('./theme-engine/handlebars/utils')
|
|
};
|