-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstructure.json
66 lines (66 loc) · 1.81 KB
/
structure.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"routes": {
"/": {
"title": "Home",
"template": "home",
"content": "home",
"hidden": true,
"breadcrumbs": false
},
"example-standard": {
"title": "Example standard page",
"template": "standard-content-wide",
"content": {
"body": "Example page body content"
}
},
"example-standard-further": {
"title": "Example standard further page",
"description": "This page aims to show how you can load in more info via the structure as well as content through a file, but reuse templates",
"template": "standard-content-wide",
"content": "example-standard-further"
},
"locations": {
"title": "Locations",
"template": "listing",
"content": "locations-listing",
"children": {
"location_1": {
"title": "Location 1",
"template": "location-detail",
"content": {
"location_text": "Location 1 detail text"
},
"children": {
"info": {
"title": "Location 1 further info",
"template": "standard-content",
"content": {
"body": "<p>Further info for location 1 - raw html</p>"
}
},
"contact": {
"title": "Location 1 contact info",
"template": "standard-content",
"content": {
"body": "<p>Contact info for location 1 - raw html</p>"
}
}
}
},
"location_2": {
"title": "Location 2",
"template": "location-detail",
"content": {
"location_text": "Location 2 detail text"
}
}
}
},
"sitemap": {
"title": "sitemap",
"template": "sitemap",
"hidden": true
}
}
}