-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocpad.js
executable file
·92 lines (90 loc) · 2.01 KB
/
docpad.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
var docpadConfig = {
documentPaths: ['render'],
plugins: {
nodesass: {
options: {
includePaths: ['node_modules']
},
outputStyle: 'compressed'
},
thumbnails: {
imageMagick: true,
presets: {
'default': {
w: 300,
h: 300,
q: 90
}
}
},
},
templateData: {
site: {
url: 'http://www.fyrton.se',
analytics: process.env.GA,
title: 'Anna Cederberg-Orreteg',
description: 'Tonsättare, musiklärare, körledare',
keywords: 'Tonsättare, musiklärare, körledare, Adolf Fredriks musikklasser',
pages: [
{
url: '/',
title: 'Hem'
}, {
url: '/om-mig.html',
title: 'Om mig'
}, {
url: '/utmarkelser.html',
title: 'Utmärkelser'
}, {
url: '/salvia.html',
title: 'SALVIA'
}, {
url: '/mina-verk.html',
title: 'Mina verk'
}, {
url: '/lyssna.html',
title: 'Lyssna'
}, {
url: '/in-english.html',
title: '🇬🇧 In English'
},{
url: '/i-backspegeln.html',
title: 'I backspegeln'
}, {
url: '/pressbilder.html',
title: 'Fotogalleri'
}
],
},
getPreparedTitle: function () {
if (this.document.title) {
return this.document.title + ' | ' + this.site.title;
} else {
return this.site.title;
}
},
getPreparedDescription: function () {
return this.document.description || this.site.description;
},
getPreparedKeywords: function () {
return this.site.keywords.concat(this.document.keywords || []).join(', ');
}
},
collections: {},
environments: {
development: {
plugins: {
nodesass: {
outputStyle: 'nested'
}
},
templateData: {
site: {
url: false
}
}
}
},
events: {}
};
module.exports = docpadConfig;