-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcompile.config.json
More file actions
33 lines (33 loc) · 869 Bytes
/
compile.config.json
File metadata and controls
33 lines (33 loc) · 869 Bytes
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
{
"base_url": "https://portugapt.github.io",
"website": {
"title": "Electric Toolbox",
"description": "A blog about programming, technology and other stuff.",
"image": "www.example.com/image.png",
"locale": "en_US"
},
"settings": {
"include_drafts": false
},
"sections": {
"home": {
"title": "Home",
"description": "Home Page",
"url": "index",
"read_from": {
"type": "singular",
"path": "content/index.md"
}
},
"blog": {
"title": "Posts",
"description": "Blog Posts",
"url": "posts",
"read_from": {
"type": "plural",
"each": "singular",
"path": "content/posts"
}
}
}
}