I am trying to use Embedded Javascript renderer for node: https://github.com/visionmedia/ejs
I would like to know how I can include another view file (partial) inside a .ejs view file.
|
I am trying to use Embedded Javascript renderer for node: https://github.com/visionmedia/ejs I would like to know how I can include another view file (partial) inside a .ejs view file. |
|||||||
|
|
With Express 3.0:
the path is relative from the caller who includes the file, not from the views directory set with |
|||||||||||||||
|
|
Express 3.x no longer support partial. According to the post ejs 'partial is not defined', you can use "include" keyword in EJS to replace the removed partial functionality. |
|||||
|
|
EJS by itself currently does not allow view partials. Express does. |
|||||
|