node-template-express.js 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. var express = require('express');
  2. var template = require('../node/template.js');
  3. var app = module.exports = express();
  4. template.config('extname', '.html');
  5. app.engine('.html', template.__express);
  6. app.set('view engine', 'html');
  7. app.set('views', __dirname + '/node-template');
  8. var demoData = {
  9. title: '国内要闻',
  10. time: (new Date).toString(),
  11. list: [
  12. {
  13. title: '<油价>调整周期缩至10个工作日 无4%幅度限制',
  14. url: 'http://finance.qq.com/zt2013/2013yj/index.htm'
  15. },
  16. {
  17. title: '明起汽油价格每吨下调310元 单价回归7元时代',
  18. url: 'http://finance.qq.com/a/20130326/007060.htm'
  19. },
  20. {
  21. title: '广东副县长疑因抛弃情妇遭6女子围殴 纪检调查',
  22. url: 'http://news.qq.com/a/20130326/001254.htm'
  23. },
  24. {
  25. title: '湖南27岁副县长回应质疑:父亲已不是领导',
  26. url: 'http://news.qq.com/a/20130326/000959.htm'
  27. },
  28. {
  29. title: '朝军进入战斗工作状态 称随时准备导弹攻击美国',
  30. url: 'http://news.qq.com/a/20130326/001307.htm'
  31. }
  32. ]
  33. };
  34. app.get('/', function(req, res){
  35. res.render('./index', demoData);
  36. });
  37. /* istanbul ignore next */
  38. if (!module.parent) {
  39. app.listen(3000);
  40. console.log('Express started on port 3000');
  41. }