Adicionando HBS parciais no Express.js
//usage
//template.hbs in partials folder -> {{> template}} reference of template
var hbs = require('hbs');
hbs.registerPartials(__dirname + '/views/partials', function (err) {});
Brix_da_best