-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy path_config.js
93 lines (87 loc) · 2.1 KB
/
_config.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
93
/**
* Please! Do not modify.
* It's default file for haroopress configuration
*/
var conf = {
meta: {
version: '0.9.2',
defaultTitle: 'haroopress',
description: 'Static Page Blog engine based Node.js, haroopress, 하루프레스',
siteUrl: 'http://haroopress.com',
author: 'haroopress',
email: '[email protected]',
keywords: [ 'haroopress', 'blog' ]
},
lang: 'en',
contentLength: 5, //\n\n
pagenate: 5,
dateFormate: 'mm:ssa, Do MMM YYYY',
deployBranch: 'gh-pages',
CNAME: '',
sourceDir: __dirname + '/source/data',
themeDir: __dirname + '/source/themes',
publicDir: __dirname + '/_public',
deployDir: __dirname + '/_deploy',
defaultPort: 8081,
defaultSlideStyle: 'basic',
defaultCodeStyle: 'default',
/* theme setting */
theme: {
name: 'basic'
},
recents: {
display: true,
articleCount: 5,
showNameTag: true
},
/* google analytics */
analytics: {
display: false,
googleAnalyticsId: ''
},
/* third party settings */
plugins: {
github: {
display: false,
user: '',
repoCount: 10, //if 0 is all else display count
skipForks: true
},
tweets: {
display: false,
user: '',
tweetCount: 10
},
twitter: {
display: false,
user: '',
tweetButton: false
},
facebook: {
display: false,
user: '',
showLikeButton: false
},
google: {
display: false,
googlePlusSize: 'medium'
},
disqus: {
display: false,
shortName: '',
showCommentCount: true
},
delicious: {},
contributors: {
display: true,
sort: 'DESC',
count: 5
},
weather: {
display: false,
delay: 0,
zipcode: 'KSXX0037'
}
}
};
module.exports = conf;