zh-hant.js
1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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;