zh-hant.js 1.3 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('/aem.html', function(req, res, next) {
  res.render('zh-hant/product_aem', {});
});

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

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

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

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

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

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

module.exports = router;