-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yml
141 lines (138 loc) · 3.68 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
backend:
name: git-gateway
branch: master
media_folder: public/images
public_folder: /images
publish_mode: editorial_workflow
collections:
- name: "config"
label: "Config"
delete: false
editor:
preview: false
files:
- name: "general"
label: "Site Config"
file: "config.json"
description: "General site settings"
fields:
- label: "URL"
name: "base_url"
widget: "string"
hint: "Do not enter the trailing slash of the URL"
- label: "Site title"
name: "site_title"
widget: "string"
- label: "Site description"
name: "site_description"
widget: "string"
- label: "Site keywords"
name: "site_keywords"
widget: "list"
summary: "{{fields.keyword.keyword}}"
field:
label: Keyword
name: keyword
widget: "string"
- label: "Twitter account"
name: "twitter_account"
widget: "string"
- label: "GitHub account"
name: "github_account"
widget: "string"
- name: "meta"
label: "Meta"
delete: false
editor:
preview: false
files:
- name: "authors"
label: "Authors"
file: "meta/authors.yml"
description: "Author descriptions"
fields:
- name: authors
label: Authors
label_singular: "Author"
widget: list
fields:
- label: "Slug"
name: "slug"
widget: "string"
hint: "The part of a URL identifies the author"
- label: "Name"
name: "name"
widget: "string"
hint: "First and Last"
- label: "Introduction"
name: "introduction"
widget: "text"
- name: "tags"
label: "Tags"
file: "meta/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: "content/posts/"
extension: "mdx"
format: "frontmatter"
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: Author
name: "author"
widget: relation
collection: "meta"
file: "authors"
searchFields:
- "authors.*.name"
displayFields:
- "authors.*.name"
valueField: "authors.*.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"