mirror of
https://github.com/cnodejs/nodeclub.git
synced 2025-12-08 19:55:55 +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');
|
|
};
|