-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yml
146 lines (143 loc) · 3.82 KB
/
config.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
backend:
name: git-gateway
branch: master
media_folder: public/images
public_folder: images
collections:
- name: "settings"
label: "Settings"
delete: false
editor:
preview: false
files:
- name: "general"
label: "Site Settings"
file: "settings.yml"
description: "General site settings"
fields:
- label: "URL"
name: "url"
widget: "string"
- label: "Global title"
name: "site_title"
widget: "string"
- label: "Global description"
name: "site_description"
widget: "string"
- label: "Category visible"
name: "category_visible"
widget: "boolean"
default: true
- label: "Tag visible"
name: "tag_visible"
widget: "boolean"
default: true
- name: "meta"
label: "Meta"
delete: false
editor:
preview: false
files:
- name: "authors"
label: "Authors"
file: "authors.yml"
description: "Author descriptions"
fields:
- name: authors
label: Authors
label_singular: "Author"
widget: list
fields:
- label: "Name"
name: "name"
widget: "string"
hint: "First and Last"
- label: "Description"
name: "description"
widget: "markdown"
- name: "categories"
label: "Categories"
file: "categories.yml"
description: "List of categories"
fields:
- name: categories
label: Categories
label_singular: "Category"
widget: list
fields:
- label: "Slug"
name: "slug"
widget: "string"
hint: "The part of a URL identifies the category"
- label: "Display Name"
name: "name"
widget: "string"
hint: "Category name for displaying on the site"
- name: "tags"
label: "Tags"
file: "tags.yml"
description: "List of tags"
fields:
- name: tags
label: Tags
label_singular: "Tag"
widget: list
fields:
- label: "Slug"
name: "slug"
widget: "string"
hint: "The part of a URL identifies the tag"
- label: "Display Name"
name: "name"
widget: "string"
hint: "Tag name for displaying on the site"
- name: "posts"
label: "Posts"
folder: "pages/posts"
extension: "mdx"
create: true
slug: "{{slug}}"
identifier_field: slug
summary: "{{title}}"
fields:
- label: "Slug"
name: "slug"
widget: "string"
- label: "Title"
name: "title"
widget: "string"
- label: "Publish Date"
name: "date"
widget: "datetime"
format: "'YYYY-MM-DD'"
dateFormat: "YYYY-MM-DD"
timeFormat: false
- label: Category
name: "category"
widget: relation
collection: "meta"
file: "categories"
searchFields:
- "categories.*.name"
displayFields:
- "categories.*.name"
valueField: "categories.*.slug"
- label: Tags
label_singular: "Tag"
name: "tags"
widget: list
summary: "{{fields.tag}}"
field:
label: Tag
name: tag
widget: relation
collection: "meta"
file: "tags"
searchFields:
- "tags.*.name"
displayFields:
- "tags.*.name"
valueField: "tags.*.slug"
- label: "Body"
name: "body"
widget: "markdown"