mirror of
https://github.com/cnodejs/nodeclub.git
synced 2026-01-25 15:23:45 +00:00
9 lines
156 B
JavaScript
9 lines
156 B
JavaScript
// static page
|
|
exports.about = function(req,res,next){
|
|
res.render('static/about');
|
|
};
|
|
|
|
exports.faq = function(req,res,next){
|
|
res.render('static/faq');
|
|
};
|