Skip to content

Instantly share code, notes, and snippets.

@MrTiggr
Last active September 15, 2015 05:03
Show Gist options
  • Save MrTiggr/888a848b691b58a12adf to your computer and use it in GitHub Desktop.
Save MrTiggr/888a848b691b58a12adf to your computer and use it in GitHub Desktop.
return function(ctx,cb){
function view() {/*
<html>
<head>
<title>Welcome to Webtasks</title>
</head>
<body>
<h1>Hello, <%= name %></h1>
</body>
</html>
*/}
var tooOld=require('ejs').render(view.stringify(), {
name: ctx.name || 'Anonymous'
});
cb(null,tooOld);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment