Andres Garza

Results 3 comments of Andres Garza

@custa1200: not sure if something changed, but it seems that we are indeed able to use app.locals in both template and partials in `[email protected]` and `[email protected]` Here's a sample app.js...

Here's my dir structure: ``` . ├── app.js └── views ├── hello.handlebars ├── layouts │ └── default.handlebars └── partials └── world.handlebars ``` `hello.handlebars` ``` {{hello}} {{> world}} ``` `partials/world.handlebars` ```...