-
Notifications
You must be signed in to change notification settings - Fork 26
/
_cms.ts
177 lines (168 loc) · 3.22 KB
/
_cms.ts
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
import lumeCMS from "lume/cms/mod.ts";
import { Field } from "lume/cms/types.ts";
const cms = lumeCMS();
const url: Field = {
name: "url",
type: "text",
description: "The public URL of the page. Leave empty to use the file path.",
transform(value) {
if (!value) {
return;
}
if (!value.endsWith("/")) {
value += "/";
}
if (!value.startsWith("/")) {
value = "/" + value;
}
return value;
},
};
cms.document(
"settings: Global settings for the site",
"src:_data.yml",
[
{
name: "lang",
type: "text",
label: "Language",
},
{
name: "home",
type: "object",
fields: [
{
name: "welcome",
type: "text",
label: "Title",
description: "Welcome message in the homepage",
},
],
},
{
name: "menu_links",
type: "object-list",
fields: [
{
name: "title",
type: "text",
label: "Title",
},
{
name: "url",
type: "text",
label: "URL",
},
],
},
{
name: "extra_head",
type: "code",
description: "Extra content to include in the <head> tag",
},
{
name: "metas",
type: "object",
description: "Meta tags configuration.",
fields: [
"site: text",
"description: text",
"title: text",
"image: text",
"twitter: text",
"lang: text",
"generator: checkbox",
],
},
],
);
cms.collection(
"posts: Blog posts",
"src:posts/*.md",
[
"title: text",
url,
"date: date",
{
name: "draft",
label: "Draft",
type: "checkbox",
description: "If checked, the post will not be published.",
},
{
name: "tags",
type: "list",
label: "Tags",
init(field, { data }) {
field.options = data.site?.search.values("tags");
},
},
{
name: "comments",
type: "object",
fields: [
{
name: "src",
label: "Link to mastodon post",
type: "url",
},
],
},
{
name: "extra_head",
type: "code",
description: "Extra content to include in the <head> tag",
},
{
name: "content",
type: "markdown",
label: "Content",
},
],
);
cms.collection(
"pages: Additional pages, like about, contact, etc.",
"src:pages/*.md",
[
{
name: "layout",
type: "hidden",
value: "layouts/page.vto",
},
{
name: "title",
type: "text",
label: "Title",
},
url,
{
name: "menu",
type: "object",
label: "Whether to include in the menu",
fields: [
{
name: "visible",
type: "checkbox",
label: "Show in menu",
},
{
name: "order",
type: "number",
label: "Order",
},
],
},
{
name: "extra_head",
type: "code",
description: "Extra content to include in the <head> tag",
},
{
name: "content",
type: "markdown",
label: "Content",
},
],
);
cms.upload("uploads: Uploaded files", "src:uploads");
export default cms;