Slide 37
Slide 37 text
@rockbot #scriptconf
function showProfile (req, res, showprofile) {
// …
req.model.end(function (er, m) {
var td = { showprofile: showprofile
, profile: req.model.profile
, fields: showprofile.fields
, title: showprofile.name
, hiring: req.model.whoshiring
, packages: req.model.packages
, starred: req.model.starred
}
res.template('profile.ejs', td)
})
}