-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathghost.config.js
41 lines (41 loc) · 963 Bytes
/
ghost.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
module.exports.sidebar = {
name: 'ghost',
sections: [
{
title: 'Getting Started',
items: [
'/ghost/',
'/ghost/custom-attributes/',
'/ghost/page-types/',
'/ghost/elements/',
'/ghost/conversion-steps/'
],
},
{
title: "Blog",
items: [
"/ghost/blog/blog-elements/",
"/ghost/blog/collection-item-elements/",
"/ghost/blog/post-page-elements/",
"/ghost/blog/misc-elements/",
"/ghost/blog/tag-page-elements/",
"/ghost/blog/author-page-elements/"
],
},
{
title: "General",
items: [
"/ghost/general/",
"/ghost/general/static-pages/",
"/ghost/general/conditionals/"
]
},
{
title: "Members",
items: [
"/ghost/members/",
"/ghost/members/subscriptions/"
]
}
]
}