-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.json
49 lines (49 loc) · 1.35 KB
/
config.json
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
{
"generator": {
"column": {
"template": "./templates/column.jade",
"source": "./source/column/**/*.md",
"destination": "./public/articles/column"
},
"news": {
"template": "./templates/news.jade",
"source": "./source/news/**/*.md",
"destination": "./public/articles/news"
},
"index":{
"template":"./templates/index.jade",
"source": "./source/index/**/index.md",
"destination": "./public/index"
},
"about":{
"template":"./templates/about.jade",
"source": "./source/about/**/index.md",
"destination": "./public/about"
},
"qanda":{
"template":"./templates/qanda.jade",
"source": "./source/qanda/**/index.md",
"destination": "./public/qanda"
},
"contact":{
"template":"./templates/contact.jade",
"source": "./source/contact/**/index.md",
"destination": "./public/contact"
},
"campus":{
"template":"./templates/campus.jade",
"source": "./source/campus/**/index.md",
"destination": "./public/campus"
},
"jobs":{
"template":"./templates/jobs.jade",
"source": "./source/jobs/**/index.md",
"destination": "./public/jobs"
},
"history":{
"template":"./templates/history.jade",
"source": "./source/history/**/index.md",
"destination": "./public/history"
}
}
}