Styx25
Styx25

Reputation: 67

how can I include file through node.js to .handlebar file

Can I add another file to a .hbs file? for example, to "index.hbs" I want to add "footer.hbs". Something like php "include footer.php".

Upvotes: 3

Views: 615

Answers (1)

Alexandru Olaru
Alexandru Olaru

Reputation: 7112

Take a look at Handlebars partials

A pretty detailed answer and tutorial can be found here on this topic: Node.js + Express + Handlebars.js + partial views

Upvotes: 2

Related Questions