guang.js
337 Bytes
'use strict';
const css = require('../css');
const co = require('bluebird').coroutine;
const detail = (req, res, next) => {
co(function* () {
return res.render('guang/detail', {
css: yield css('guang/detail.css'),
width750: true
});
})().catch(next);
};
module.exports = {
detail
};