mirror of
https://github.com/cnodejs/nodeclub.git
synced 2025-12-08 19:55:55 +00:00
11 lines
182 B
JavaScript
11 lines
182 B
JavaScript
// static page
|
|
// About
|
|
exports.about = function (req, res, next) {
|
|
res.render('static/about');
|
|
};
|
|
|
|
// FAQ
|
|
exports.faq = function (req, res, next) {
|
|
res.render('static/faq');
|
|
};
|