diff options
Diffstat (limited to '.frontmatter/config/taxonomy')
8 files changed, 92 insertions, 3 deletions
diff --git a/.frontmatter/config/taxonomy/contenttypes/communication.json b/.frontmatter/config/taxonomy/contenttypes/communication.json index e48aac3..fd0e34d 100644 --- a/.frontmatter/config/taxonomy/contenttypes/communication.json +++ b/.frontmatter/config/taxonomy/contenttypes/communication.json @@ -2,7 +2,7 @@ "$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json", "name": "communication", "pageBundle": false, - "previewPath": null, + "previewPath": "/communication/", "fields": [ { "title": "Title", diff --git a/.frontmatter/config/taxonomy/contenttypes/docs.json b/.frontmatter/config/taxonomy/contenttypes/docs.json new file mode 100644 index 0000000..5ab6545 --- /dev/null +++ b/.frontmatter/config/taxonomy/contenttypes/docs.json @@ -0,0 +1,85 @@ +{ + "$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json", + "name": "docs", + "pageBundle": false, + "previewPath": "/docs/", + "fields": [ + { + "title": "Title", + "name": "title", + "type": "string", + "single": true + }, + { + "title": "Description", + "name": "description", + "type": "string" + }, + { + "title": "date", + "name": "date", + "type": "datetime" + }, + { + "title": "Metadata", + "name": "metadata", + "type": "choice", + "choices": [ + "full", + "original", + "none" + ], + "default": "full" + }, + { + "title": "Categories", + "name": "categories", + "type": "string", + "single": true, + "default": "Docs" + }, + { + "title": "Tags", + "name": "tags", + "type": "tags" + }, + { + "title": "Thumbnail", + "name": "thumbnail", + "type": "string" + }, + { + "title": "Type", + "name": "type", + "type": "choice", + "choices": [ + "default", + "docs", + "minimal" + ], + "default": "docs" + }, + { + "title": "Draft", + "name": "draft", + "type": "draft" + }, + { + "title": "Alias", + "name": "alias", + "type": "list" + }, + { + "title": "Modules", + "name": "modules", + "type": "string" + }, + { + "title": "FrontMatter Content Type", + "name": "fmContentType", + "type": "string", + "single": true, + "default": "docs" + } + ] +}
\ No newline at end of file diff --git a/.frontmatter/config/taxonomy/contenttypes/evidence.json b/.frontmatter/config/taxonomy/contenttypes/evidence.json index f3e70ff..a6a39cf 100644 --- a/.frontmatter/config/taxonomy/contenttypes/evidence.json +++ b/.frontmatter/config/taxonomy/contenttypes/evidence.json @@ -2,7 +2,7 @@ "$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json", "name": "evidence", "pageBundle": false, - "previewPath": null, + "previewPath": "/evidence/", "fields": [ { "title": "Title", diff --git a/.frontmatter/config/taxonomy/contenttypes/index.json b/.frontmatter/config/taxonomy/contenttypes/index.json index aafd066..9a38d96 100644 --- a/.frontmatter/config/taxonomy/contenttypes/index.json +++ b/.frontmatter/config/taxonomy/contenttypes/index.json @@ -2,7 +2,7 @@ "$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json", "name": "index", "pageBundle": false, - "previewPath": null, + "previewPath": "/", "fields": [ { "title": "Title", diff --git a/.frontmatter/config/taxonomy/contenttypes/legal.json b/.frontmatter/config/taxonomy/contenttypes/legal.json index ddd05c8..e87f78e 100644 --- a/.frontmatter/config/taxonomy/contenttypes/legal.json +++ b/.frontmatter/config/taxonomy/contenttypes/legal.json @@ -2,6 +2,7 @@ "$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json", "name": "legal", "pageBundle": false, + "previewPath": "/legal/", "fields": [ { "title": "title", diff --git a/.frontmatter/config/taxonomy/contenttypes/news.json b/.frontmatter/config/taxonomy/contenttypes/news.json index ef79686..f3adba4 100644 --- a/.frontmatter/config/taxonomy/contenttypes/news.json +++ b/.frontmatter/config/taxonomy/contenttypes/news.json @@ -2,6 +2,7 @@ "$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json", "name": "news", "pageBundle": false, + "previewPath": "/news/", "fields": [ { "title": "title", diff --git a/.frontmatter/config/taxonomy/contenttypes/person.json b/.frontmatter/config/taxonomy/contenttypes/person.json index e60ce0c..57bb804 100644 --- a/.frontmatter/config/taxonomy/contenttypes/person.json +++ b/.frontmatter/config/taxonomy/contenttypes/person.json @@ -3,6 +3,7 @@ "name": "person", "pageBundle": false, "template": "[[workspace]]/.frontmatter/templates/persons.md", + "previewPath": "/persons/", "fields": [ { "title": "Title", diff --git a/.frontmatter/config/taxonomy/contenttypes/post.json b/.frontmatter/config/taxonomy/contenttypes/post.json index 14a6b84..218d024 100644 --- a/.frontmatter/config/taxonomy/contenttypes/post.json +++ b/.frontmatter/config/taxonomy/contenttypes/post.json @@ -2,6 +2,7 @@ "$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json", "name": "post", "pageBundle": false, + "previewPath": "/posts/", "fields": [ { "title": "title", |
