-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfrontmatter.json
More file actions
27 lines (27 loc) · 962 Bytes
/
frontmatter.json
File metadata and controls
27 lines (27 loc) · 962 Bytes
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
{
"$schema": "https://frontmatter.codes/frontmatter.schema.json",
"frontMatter.framework.id": "hugo",
"frontMatter.preview.host": "http://localhost:1313",
"frontMatter.content.pageFolders": [
{
"title": "Posts",
"path": "[[workspace]]/site/content/posts",
"contentTypes": ["post"]
}
],
"frontMatter.content.publicFolder": "[[workspace]]/site/static",
"frontMatter.taxonomy.contentTypes": [
{
"name": "post",
"pageBundle": false,
"fields": [
{ "title": "Title", "name": "title", "type": "string" },
{ "title": "Date", "name": "date", "type": "datetime" },
{ "title": "Draft", "name": "draft", "type": "draft" },
{ "title": "Tags", "name": "tags", "type": "tags" },
{ "title": "Categories", "name": "categories", "type": "categories" },
{ "title": "Cover image","name": "coverImage", "type": "image" }
]
}
]
}