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
| import { Collection } from "tinacms";
|
| const Post: Collection = {
| name: "post",
| label: "Posts",
| path: "content/blog",
| frontmatterFormat: "toml",
| frontmatterDelimiters: "+++",
| format: "md",
| fields: [
| {
| type: "string",
| name: "title",
| label: "Title",
| isTitle: true,
| required: true,
| },
| {
| type: "string",
| name: "author",
| label: "Author",
| },
| {
| type: "string",
| name: "categories",
| label: "Categories",
| list: true
| },
| {
| type: "string",
| name: "tags",
| label: "Tags",
| list: true
| },
| {
| type: "datetime",
| name: "date",
| label: "Date",
| },
| {
| type: "image",
| name: "image",
| label: "Image",
| },
| {
| type: "rich-text",
| name: "body",
| label: "Body",
| isBody: true,
| },
| ],
| };
|
| export default Post;
|
|