My repo for this problem is at: https://github.com/okor/express_bad_haml
The problem is that I can get the app to render the layout correctly, or the page, but not both. Resulting in this: http://farm8.staticflickr.com/7170/6818833785_80bcc2b2fe_z.jpg
I’m not sure what I’m doing wrong. Help?
Ok, I figured it out. I had previously set
app.set("view options", {layout: true});I changed that setting to
app.set("view options", {layout: false});And that fixed the issue.