ericf / express-handlebars

A Handlebars view engine for Express which doesn't suck.
BSD 3-Clause "New" or "Revised" License
2.32k stars 382 forks source link

Calling a partial inside another partial #303

Open ngohuytrieu opened 1 year ago

ngohuytrieu commented 1 year ago

Hi guys, I have an issue when trying to call a partial inside another partial

Partials folder structure

views/partials/partial1.hbs
views/partials/partial2.hbs

Inside patial1.hbs

Partial 1
{{>partial2}}

Inside patial2.hbs

Partial 2

The result doesn't show any error but the content of the partial2.hsb is not showing.