index.js
368 Bytes
/**
* 主页
* @author: Bi Kai<kai.bi@yoho.cn>
* @date: 2016/05/09
*/
'use strict';
const _ = require('lodash');
const helpers = global.yoho.helpers;
/**
* 频道选择页
*/
const channel = {
index: (req, res, next) => {
res.render('index', {
module: 'channel',
page: 'home'
});
}
};
module.exports = channel;