generated from pages-cms/astro-blog-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pages.yml
445 lines (444 loc) · 18 KB
/
.pages.yml
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
media:
input: src/assets/images
output: /images
extensions: [svg, png, jpg, jpeg]
content:
- name: job-postings
label: Job Postings
type: collection
path: src/content/careers
view:
fields: [ title, location, featured, active ]
sort: [ active, title ]
default:
sort: active
order: desc
fields:
- { name: title, label: Job Title, type: string, required: true }
- { name: postedDate, label: Posted Date, type: date, required: true }
- { name: description, label: Short Description, description: "A brief description of the job posting. This is only displayed on the careers page in the job card.", type: text, required: true }
- name: type
label: Employment Type
type: select
required: true
options:
values: [Full-Time, Part-Time, Contract]
- { name: location, label: Location, type: string, required: true }
- { name: active, label: Active Posting, type: boolean, default: true }
- { name: featured, label: Featured, type: boolean, default: false }
- name: salary
label: Salary
type: object
fields:
- { name: salaryLow, label: Low Salary, description: "The lowest salary for the job posting", type: number }
- { name: salaryHigh, label: High Salary, description: "The highest salary for the job posting", type: number }
- { name: applicationUrl, label: Application URL, type: string, pattern: "^https?://.*$" }
- { name: sortOrder, label: Sort Order, type: number, default: 999 }
- { name: body, label: Full Description, type: rich-text, required: true }
- name: our-work
label: Our Work
type: collection
path: src/content/work
view:
fields: [ title, client, summary, sortOrder ]
sort: [ sortOrder, title ]
default:
sort: sortOrder
order: asc
fields:
- { name: title, label: Title, type: string, required: true }
- { name: client, label: Client, type: string, required: true }
- { name: description, label: Full Description, type: text, required: true }
- { name: summary, label: Card Summary, type: text, description: "A brief summary that appears on the work item card" }
- name: image
label: Image
type: object
required: false
fields:
- name: src
label: Image
type: image
default: "/images/about-us.svg"
- { name: alt, label: Alt Text, type: string, default: "Placeholder image" }
- { name: sortOrder, label: Sort Order, type: number, default: 999 }
- { name: body, label: Content, type: rich-text }
- name: news
label: News
type: collection
path: src/content/news
view:
fields: [ title, draft, date ]
fields:
- { name: author, label: Author, type: string, required: true }
- { name: pubDatetime, label: Publication Date, type: date, required: true }
- { name: modDatetime, label: Modified Date, type: date }
- { name: title, label: Title, type: string, required: true }
- { name: ogImage, label: Open Graph Image, type: string }
- { name: slug, label: Slug, type: string }
- { name: featured, label: Featured, type: boolean }
- { name: draft, label: Draft, type: boolean }
- { name: tags, label: Tags, type: string, list: true }
- { name: description, label: Description, type: text }
- { name: body, label: Body, type: rich-text, required: true }
- name: leaders
label: Leaders
type: collection
path: src/content/leaders
view:
fields: [ photo.src, name, position, active, sortOrder ]
sort: [ sortOrder, name ]
default:
sort: sortOrder
order: asc
fields:
- { name: name, label: Name, type: string, required: true }
- { name: position, label: Position, type: string, required: true }
- { name: active, label: Active, type: boolean, default: true }
- name: photo
label: Photo
type: object
fields:
- name: src
label: Photo
type: image
- { name: alt, label: Alt Text, type: string }
- { name: linkedin, label: LinkedIn URL, type: string, pattern: "^https://www\\.linkedin\\.com/.*$" }
- { name: sortOrder, label: Sort Order, type: number, default: 999 }
- { name: body, label: Bio, type: rich-text }
- name: home
label: Home page
type: file
path: src/pages/home.md
fields:
- { name: layout, type: string, hidden: true, default: "../layouts/Layout.astro" }
- name: seo
label: SEO Settings
type: object
fields:
- { name: title, label: Page Title, type: string, description: "This is used as the page title in the browser", required: true }
- { name: description, label: Description, description: "This is used as the page description for SEO. If not provided, the default description from the site configuration will be used.", type: text }
- name: hero
label: Hero Section
type: object
fields:
- { name: title, label: Hero Text, type: string, required: true }
- name: buttons
label: Hero Buttons
type: object
list:
min: 1
max: 2
fields:
- { name: text, label: Button Text, type: string, required: true }
- { name: href, label: Button URL, type: string, required: true }
- name: variant
label: Button Style
type: select
options:
values:
- value: default
label: Default
- value: outline
label: Outline
default: default
- name: services
label: Services Section
type: object
fields:
- { name: title, label: Heading Text, type: string, required: true, hidden: true }
- name: items
label: Services
type: object
list:
max: 4
fields:
- { name: name, label: Service Name, type: string, required: true }
- name: button
label: Learn More Link
type: object
required: true
hidden: true
fields:
- { name: text, label: Link Text, type: string, required: true }
- { name: href, label: Link URL, type: string, required: true }
- name: sbm
label: SBM Section
type: object
fields:
- { name: title, label: Heading Text, type: string, required: true, hidden: true }
- { name: description, label: Description, type: text, required: true }
- name: categories
label: Module Types
type: string
list:
min: 4
max: 4
- name: button
label: Learn More Link
type: object
required: true
hidden: true
fields:
- { name: text, label: Link Text, type: string, required: true }
- { name: href, label: Link URL, type: string, required: true }
- name: clients
label: Clients Section
type: object
fields:
- { name: title, label: Heading Text, type: string, required: true, hidden: true }
- name: images
label: Client Logos
description: "Requires between 4 and 12 client logos"
type: image
list:
max: 12
- name: about
label: About page
type: file
path: src/pages/about.md
fields:
- { name: layout, type: string, hidden: true, default: "../layouts/AboutLayout.astro" }
- name: seo
label: SEO Settings
type: object
fields:
- { name: title, label: Page Title, type: string, description: "This is used as the page title in the browser", required: true }
- { name: description, label: Description, description: "This is used as the page description for SEO. If not provided, the default description from the site configuration will be used.", type: text }
- name: hero
label: Hero Section
type: object
fields:
- { name: title, label: Heading Text, type: string, description: "This is used as the heading text in the hero section", required: true, hidden: true }
- { name: description, label: Description, type: text, description: "This is used as the description in the hero section", required: true }
- name: image
hidden: true
label: Image
type: object
fields:
- name: src
label: Image
type: image
- { name: alt, label: Alt Text, type: string }
- name: services
label: Services
type: object
list:
min: 4
max: 4
fields:
- { name: name, label: Service Name, type: string, description: "This is used as the service name in the about section", required: true }
- name: icon
label: Icon
hidden: true
type: object
fields:
- name: src
label: Icon Image
type: image
- { name: alt, label: Alt Text, type: string }
- name: items
label: Service Items
type: string
list:
min: 3
max: 4
- name: values
label: Values Section
type: object
fields:
- { name: title, label: Heading Text, type: string, description: "This is used as the heading text in the values section", required: true, hidden: true }
- name: items
label: Values
type: object
list:
min: 3
max: 3
fields:
- { name: title, label: Value Name, type: string, description: "This is used as the title in the values section", required: true }
- { name: description, label: Description, type: text, description: "This is used as the description in the values section", required: true }
- name: leadership
label: Leadership Section
type: object
fields:
- { name: title, label: Title, type: string, description: "The leadership section is not editable here. Leaders are managed in the Leaders collection.", required: true, readonly: true }
- name: careers
label: Careers Section
type: object
fields:
- { name: title, label: Heading Text, type: string, description: "The careers section is not editable here. Job postings are managed in the Job Postings collection.", required: true, readonly: true }
- { name: description, label: Description, type: text, description: "This is used as the description in the careers section", required: true }
- name: image
hidden: true
label: Image
type: object
fields:
- name: src
label: Image
type: image
- { name: alt, label: Alt Text, type: string }
- name: button
label: Button
type: object
fields:
- { name: href, label: Button URL, type: string, required: true }
- { name: text, label: Button Text, type: string, required: true }
- name: sbm
label: SBM page
type: file
path: src/pages/sbm.md
fields:
- { name: layout, type: string, hidden: true, default: "../layouts/SbmLayout.astro" }
- name: seo
label: SEO Settings
type: object
fields:
- { name: title, label: Page Title, type: string, description: "This will be used as the page title in the browser", required: true }
- { name: description, label: Description, description: "This will be used as the page description for SEO. If not provided, the default description from the site configuration will be used.", type: text }
- name: hero
label: Hero Section
type: object
fields:
- { name: title, label: Heading, type: string, required: true }
- { name: description, label: Description, type: text, required: true }
- name: buttons
label: Buttons
type: object
list:
min: 1
max: 2
fields:
- { name: text, label: Button Text, type: string, required: true }
- { name: href, label: Button URL, type: string, required: true }
- name: modules
label: Marketplace Modules
type: object
fields:
- { name: heading, label: Section Heading, type: string, required: true, hidden: true }
- name: items
label: Module Items
type: object
list: true
fields:
- { name: title, label: Module Title, type: string, required: true }
- { name: content, label: Module Content, type: text, required: true }
- name: buttons
label: Module Buttons
type: object
list:
max: 3
fields:
- { name: text, label: Button Text, type: string, required: true }
- { name: href, label: Button URL, type: string, required: true, pattern: "^https?://.*$" }
- name: work
label: Work page
type: file
path: src/pages/work.md
fields:
- { name: layout, type: string, hidden: true, default: "../layouts/WorkLayout.astro" }
- name: seo
label: SEO Settings
type: object
fields:
- { name: title, label: Page Title, type: string, description: "This will be used as the page title in the browser", required: true }
- { name: description, label: Description, description: "This will be used as the page description for SEO. If not provided, the default description from the site configuration will be used.", type: text }
- name: contact
label: Contact page
type: file
path: src/pages/contact.md
fields:
- { name: layout, type: string, hidden: true, default: "../layouts/ContactLayout.astro" }
- name: seo
label: SEO Settings
type: object
fields:
- { name: title, label: Page Title, type: string, description: "This will be used as the page title in the browser", required: true }
- { name: description, label: Description, description: "This will be used as the page description for SEO. If not provided, the default description from the site configuration will be used.", type: text }
- name: contact
label: Contact Information
type: object
fields:
- name: address
label: Address
type: object
fields:
- { name: street, label: Street Address, type: string, required: true }
- { name: suite, label: Suite/Unit, type: string }
- { name: city, label: City, type: string, required: true }
- { name: state, label: State, type: string, required: true }
- { name: zip, label: ZIP Code, type: string, required: true }
- { name: phone, label: Phone Number, type: string, required: true }
- { name: email, label: Email Address, type: string, required: true, pattern: "^[\\w-\\.]+@([\\w-]+\\.)+[\\w-]{2,4}$" }
- name: cta_career
label: Careers CTA Section
type: object
fields:
- { name: heading, label: Heading Text, type: string }
- name: button
label: CTA Button
required: true
type: object
fields:
- { name: text, label: Button Text, type: string, required: true }
- { name: href, label: Button URL, type: string, required: true }
- name: careers
label: Careers page
type: file
path: src/pages/careers.md
fields:
- { name: layout, type: string, hidden: true, default: "../layouts/CareersLayout.astro" }
- name: seo
label: SEO Settings
type: object
fields:
- { name: title, label: Page Title, type: string, description: "This will be used as the page title in the browser", required: true }
- { name: description, label: Description, description: "This will be used as the page description for SEO. If not provided, the default description from the site configuration will be used.", type: text }
- name: hero
label: Hero Section
type: object
fields:
- { name: heading, label: Heading, type: string, required: true }
- { name: description, label: Description, type: text, required: true }
- name: benefits
label: Benefits Section
type: object
fields:
- { name: heading, label: Heading, type: string, required: true }
- name: items
label: Benefits
type: object
list: true
fields:
- { name: title, label: Title, type: string, required: true }
- { name: description, label: Description, type: text, required: true }
- name: positions
label: Open Positions Section
type: object
fields:
- { name: heading, label: Heading, type: string, required: true }
- name: teamPhotos
label: Team Photos Section
type: object
fields:
- { name: heading, label: Heading, type: string, default: "Team Photos" }
- name: photos
label: Photos
type: object
list: true
fields:
- name: image
label: Photo
type: image
- { name: alt, label: Alt Text, type: string }
- name: site-config
label: Site Configuration
type: file
path: src/content/site/config.md
fields:
- name: siteName
label: Site Name
type: string
required: true
- name: description
label: Description
type: text
required: true