-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.json
44 lines (44 loc) · 1.34 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
{
"siteURL":"http://example.com",
"tempUploads":"./uploads",
"srcStaticDir":"./static",
"contentDirectory":"./content",
"contentFileExtension": "md",
"outputDirectory":"./example.com",
"templateDirectory":"./views/classic",
"outputMediaDirectory":"./example.com/media",
"imageSize":1400,
"languages":["ru", "en"],
"postsOnIndex": 15,
"postsOnFeed": 20,
"adminCredentials": {
"sessionSecret": "secret",
"password": "pass"
},
"strings": {
"ru": {
"siteURL":"http://example.com/ru",
"authorName":"Джон Смит",
"authorEmail":"[email protected]",
"siteTitle":"Сайт Джона Смита",
"blogTitle":"Блог Джона Смита",
"blog":"Блог",
"archive":"Архив блога Джона Смита",
"readmore":"Читать",
"twitter":"@example"
},
"en": {
"siteURL":"http://example.com/en",
"authorName":"John Smith",
"authorEmail":"[email protected]",
"siteTitle":"John Smith′s site",
"blogTitle":"John Smith′s Blog",
"blog":"Blog",
"archive":"John Smith′s Blog Archive",
"readmore":"Read",
"twitter":"@example"
}
},
"unforgivableFileNames": ["archive", "admin", "blog", "feed", "drafts", "ru", "en"],
"cutString":"<!--more-->"
}