├── .gitignore ├── .npmignore ├── HISTORY.md ├── LICENSE ├── README.md ├── examples ├── advanced │ ├── lib │ │ └── helpers.js │ ├── package.json │ ├── public │ │ └── echo.js │ ├── server.js │ ├── shared │ │ └── templates │ │ │ └── echo.handlebars │ └── views │ │ ├── echo.handlebars │ │ ├── home.handlebars │ │ ├── layouts │ │ ├── main.handlebars │ │ └── shared-templates.handlebars │ │ ├── partials │ │ └── page │ │ │ ├── nav.handlebars │ │ │ └── title.handlebars │ │ └── yell.handlebars └── basic │ ├── package.json │ ├── server.js │ └── views │ ├── home.handlebars │ └── layouts │ └── main.handlebars ├── index.js ├── lib ├── express-handlebars.js └── utils.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | examples/ 2 | -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericf/express-handlebars/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericf/express-handlebars/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericf/express-handlebars/HEAD/README.md -------------------------------------------------------------------------------- /examples/advanced/lib/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericf/express-handlebars/HEAD/examples/advanced/lib/helpers.js -------------------------------------------------------------------------------- /examples/advanced/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericf/express-handlebars/HEAD/examples/advanced/package.json -------------------------------------------------------------------------------- /examples/advanced/public/echo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericf/express-handlebars/HEAD/examples/advanced/public/echo.js -------------------------------------------------------------------------------- /examples/advanced/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericf/express-handlebars/HEAD/examples/advanced/server.js -------------------------------------------------------------------------------- /examples/advanced/shared/templates/echo.handlebars: -------------------------------------------------------------------------------- 1 |

echo: {{message}}

2 | -------------------------------------------------------------------------------- /examples/advanced/views/echo.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericf/express-handlebars/HEAD/examples/advanced/views/echo.handlebars -------------------------------------------------------------------------------- /examples/advanced/views/home.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericf/express-handlebars/HEAD/examples/advanced/views/home.handlebars -------------------------------------------------------------------------------- /examples/advanced/views/layouts/main.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericf/express-handlebars/HEAD/examples/advanced/views/layouts/main.handlebars -------------------------------------------------------------------------------- /examples/advanced/views/layouts/shared-templates.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericf/express-handlebars/HEAD/examples/advanced/views/layouts/shared-templates.handlebars -------------------------------------------------------------------------------- /examples/advanced/views/partials/page/nav.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericf/express-handlebars/HEAD/examples/advanced/views/partials/page/nav.handlebars -------------------------------------------------------------------------------- /examples/advanced/views/partials/page/title.handlebars: -------------------------------------------------------------------------------- 1 | Example App: {{title}} 2 | -------------------------------------------------------------------------------- /examples/advanced/views/yell.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericf/express-handlebars/HEAD/examples/advanced/views/yell.handlebars -------------------------------------------------------------------------------- /examples/basic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericf/express-handlebars/HEAD/examples/basic/package.json -------------------------------------------------------------------------------- /examples/basic/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericf/express-handlebars/HEAD/examples/basic/server.js -------------------------------------------------------------------------------- /examples/basic/views/home.handlebars: -------------------------------------------------------------------------------- 1 |

Example App: Home

2 | -------------------------------------------------------------------------------- /examples/basic/views/layouts/main.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericf/express-handlebars/HEAD/examples/basic/views/layouts/main.handlebars -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericf/express-handlebars/HEAD/index.js -------------------------------------------------------------------------------- /lib/express-handlebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericf/express-handlebars/HEAD/lib/express-handlebars.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericf/express-handlebars/HEAD/lib/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericf/express-handlebars/HEAD/package.json --------------------------------------------------------------------------------