-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.conf
131 lines (129 loc) · 4.23 KB
/
template.conf
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "Svelte Space",
"author": "Squarespace",
"layouts": {
"default": {
"name": "Default",
"regions": ["site"]
}
},
"navigations": [
{
"title": "Primary Navigation",
"name": "primaryNav"
},
{
"title": "Secondary Navigation",
"name": "secondaryNav"
}
],
"systemCollections": ["blog"],
"stylesheets": [],
"customTypes": [
{
"title": "Package",
"name": "package",
"base": "text",
"fields": [
{
"name":"name",
"title": "Name",
"type": "text"
},
{
"name":"price",
"title": "Price",
"type": "text"
},
{
"name" : "isBestValue",
"title" : "Is Best Value?",
"type" : "checkbox"
}
]
},
{
"title": "Video Lesson",
"name": "video-lesson",
"base": "text",
"fields": [
{
"name": "link",
"title": "Link",
"type": "text"
},
{
"name": "time",
"title": "Time",
"type": "text"
},
{
"name": "date",
"title": "Date",
"type": "text"
}
]
},
{
"title": "Quote",
"name": "text-quote",
"base": "text",
"fields": [
{
"name": "author",
"title": "Author",
"type": "text"
},
{
"name": "body",
"title": "Body",
"type": "text"
}
]
},
{
"title": "Index Copy Text",
"name": "index-copy-text",
"base": "text",
"fields": [
{ "title": "Heading Title", "name": "heading-title", "type": "text" },
{ "title": "Heading Body", "name": "heading-body", "type": "wysiwyg" },
{ "title": "Heading Image", "name": "heading-image", "type": "text" },
{ "title": "Services Title", "name": "services-title", "type": "text" },
{ "title": "Packages Title", "name": "packages-title", "type": "text" },
{ "title": "Resource Blurb Title", "name": "resource-blurb-title", "type": "text" },
{ "title": "Resource Blurb Body", "name": "resource-blurb-body", "type": "text" },
{
"title": "Resource Blurb Button Title",
"name": "resource-blurb-button-title",
"type": "text"
},
{ "title": "Video Lessons Title", "name": "video-lessons-title", "type": "text" },
{
"title": "Video Lessons Blurb Heading",
"name": "video-lessons-blurb-heading",
"type": "text"
},
{
"title": "Video Lessons Blurb Body",
"name": "video-lessons-blurb-body",
"type": "wysiwyg"
},
{
"title": "Video Lessons Link Title",
"name": "video-lessons-link-title",
"type": "text"
},
{ "title": "Blog Heading", "name": "blog-heading", "type": "text" },
{
"title": "Blog Button Link Title",
"name": "blog-button-link-title",
"type": "text"
},
{ "title": "Booking Title", "name": "booking-title", "type": "text" },
{ "title": "Booking Body", "name": "booking-body", "type": "text" },
{ "title": "Booking Button Title", "name": "booking-button-title", "type": "text" }
]
}
]
}