views:

27

answers:

1

I'm just starting with node.js + express + ejs. I can't find anywhere how to pull in the requested ejs file to the layout file.

I know full well that yield is not the right thing here.

e.g.

layout.ejs

<html>
<head><title>EJS Layout</title></head>
<body>
    <%= yield %>
</body>
</html>

index.ejs

<p>Hi</p>
+1  A: 

Finally found some source code for an express app:

<%- body %>
rpflo