我正在开发nodejs和handlebars中的应用程序。
我希望能够创建一个布局模板,然后在该布局中添加各种单独的组件。
每个组件都将使用单独的把手模板和上下文创建。 例如layout.tmpl
<html>
<head>...</head>
<body>
<!-- somehow render a handlebars template here with a separate context -->
<!-- somehow render another handlebars template here with a separate context -->
<body>
</html>
这可能吗?如果没有,是否有其他模板引擎可以做到这一点?