nodeclub/controllers/static.js
2013-02-19 10:47:29 +08:00

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');
};