-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtargets.js
75 lines (75 loc) · 2.07 KB
/
targets.js
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
module.exports = {
portfolio: {
title: 'Portfolio',
skeleton: 'portfolio-skeleton.html',
toc: {
template: 'toc.html',
entriesPerPage: 15,
},
chapters: [
{
sourceDir: 'content/portfolio/kurse',
template: 'portfolio.html',
indexTemplate: 'portfolio-chapter.html',
pageCount: {
increment: 2,
indexIncrement: 2,
},
},
{
sourceDir: 'content/portfolio/events',
template: 'portfolio.html',
indexTemplate: 'portfolio-chapter.html',
pageCount: {
increment: 2,
indexIncrement: 2,
},
},
],
pageCount: {
offset: 12,
trailing: 0,
},
output: {
html: `out/portfolio.html`,
pdf: `out/portfolio.pdf`,
},
},
portfolio_school: {
title: 'Portfolio',
skeleton: 'portfolio-skeleton_school.html',
chapters: [
{
sourceDir: 'content/portfolio/kurse',
template: 'portfolio.html',
indexTemplate: 'portfolio-chapter.html',
pageCount: {
increment: 2,
indexIncrement: 2,
},
},
{
sourceDir: 'content/portfolio/kurspakete',
template: 'portfolio.html',
indexTemplate: 'portfolio-chapter.html',
pageCount: {
increment: 2,
indexIncrement: 2,
},
},
],
toc: {
template: 'toc.html',
entriesPerPage: 15,
},
pageCount: {
offset: 8,
increment: 2,
trailing: 0,
},
output: {
html: `out/portfolio_school.html`,
pdf: `out/portfolio_school.pdf`,
},
}
}