stick
stick copied to clipboard
app.render(skin, context) requires context
At the moment it's not possible to render a template without a context object:
app.render("test.html");
This results in "TypeError: Cannot set property "content" of undefined to "WTF?!" (stick/lib/middleware/render.js#52)", which might confuse beginners, who just want to render a basic template without any variables.
The following works:
app.render("test.html", {});