zh-hant.js 1.28 KB
var express = require('express');
var router = express.Router();

/* GET home page. */
router.get('/', function(req, res, next) {
  res.render('zh-hant/index', {});
});

router.get('/index.html', function(req, res, next) {
  res.render('zh-hant/index', {});
});

router.get('/about.html', function(req, res, next) {
  res.render('zh-hant/about', {});
});

router.get('/cases.html', function(req, res, next) {
  res.render('zh-hant/cases', {});
});

router.get('/contact.html', function(req, res, next) {
  res.render('zh-hant/contact', {});
});

router.get('/product_aem.html', function(req, res, next) {
  res.render('zh-hant/product_aem', {});
});

router.get('/product_aa.html', function(req, res, next) {
  res.render('zh-hant/product_aa', {});
});

router.get('/product_aam.html', function(req, res, next) {
  res.render('zh-hant/product_aam', {});
});

router.get('/product_at.html', function(req, res, next) {
  res.render('zh-hant/product_at', {});
});

router.get('/product_ac.html', function(req, res, next) {
  res.render('zh-hant/product_ac', {});
});

router.get('/product_aec.html', function(req, res, next) {
  res.render('zh-hant/product_aec', {});
});

router.get('/product_weixin.html', function(req, res, next) {
  res.render('zh-hant/product_weixin', {});
});

module.exports = router;