diff options
| author | anoduck <9925396+anoduck@users.noreply.github.com> | 2024-11-02 04:08:53 -0400 |
|---|---|---|
| committer | anoduck <9925396+anoduck@users.noreply.github.com> | 2024-11-02 04:08:53 -0400 |
| commit | ebe0b7f231ffa8d3cdd59942ad938a9aae8ce2d4 (patch) | |
| tree | 6ffddcfc74f5305c4178b458c08086d9a5518946 /.frontmatter/config | |
| parent | 0dfbc14d584113e692a6d51b94392fc882cca5b5 (diff) | |
ci(.frontMatter): :bricks: Frontmatter content types
Clarification and Corrections of typos in frontmatter configuration files.
Diffstat (limited to '.frontmatter/config')
12 files changed, 289 insertions, 5 deletions
diff --git a/.frontmatter/config/content/pagefolders/content.json b/.frontmatter/config/content/pagefolders/content.json index bbfb592..484da3c 100644 --- a/.frontmatter/config/content/pagefolders/content.json +++ b/.frontmatter/config/content/pagefolders/content.json @@ -6,6 +6,7 @@ "excludeSubdir": true, "previewPath": "", "contentTypes": [ - "page" + "page", + "content" ] }
\ No newline at end of file diff --git a/.frontmatter/config/content/pagefolders/evidence.json b/.frontmatter/config/content/pagefolders/evidence.json index 7996094..0be63e5 100644 --- a/.frontmatter/config/content/pagefolders/evidence.json +++ b/.frontmatter/config/content/pagefolders/evidence.json @@ -5,6 +5,7 @@ "filePrefix": null, "previewPath": "evidence", "contentTypes": [ - "docs" + "docs", + "evidence" ] }
\ No newline at end of file diff --git a/.frontmatter/config/content/pagefolders/video.json b/.frontmatter/config/content/pagefolders/video.json index 7bc6282..bab7499 100644 --- a/.frontmatter/config/content/pagefolders/video.json +++ b/.frontmatter/config/content/pagefolders/video.json @@ -5,6 +5,7 @@ "previewPath": "video", "filePrefix": null, "contentTypes": [ - "minimal" + "minimal", + "video" ] }
\ No newline at end of file diff --git a/.frontmatter/config/taxonomy/contenttypes/content.json b/.frontmatter/config/taxonomy/contenttypes/content.json index 6d3d586..30bf59f 100644 --- a/.frontmatter/config/taxonomy/contenttypes/content.json +++ b/.frontmatter/config/taxonomy/contenttypes/content.json @@ -1,6 +1,6 @@ { "$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json", - "name": "Content", + "name": "content", "pageBundle": false, "previewPath": null, "fields": [ diff --git a/.frontmatter/config/taxonomy/contenttypes/evidence.json b/.frontmatter/config/taxonomy/contenttypes/evidence.json new file mode 100644 index 0000000..44e08fd --- /dev/null +++ b/.frontmatter/config/taxonomy/contenttypes/evidence.json @@ -0,0 +1,80 @@ +{ + "$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json", + "name": "evidence", + "pageBundle": false, + "previewPath": null, + "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": "Evidence" + }, + { + "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": "Modules", + "name": "modules", + "type": "string" + }, + { + "title": "FrontMatter Content Type", + "name": "fmContentType", + "type": "string", + "single": true, + "default": "evidence" + } + ] +}
\ No newline at end of file diff --git a/.frontmatter/config/taxonomy/contenttypes/fpnav.json b/.frontmatter/config/taxonomy/contenttypes/fpnav.json index ea7c49b..2b8b957 100644 --- a/.frontmatter/config/taxonomy/contenttypes/fpnav.json +++ b/.frontmatter/config/taxonomy/contenttypes/fpnav.json @@ -51,6 +51,13 @@ "name": "thumbnail", "type": "string", "single": true + }, + { + "title": "FrontMatter Content Type", + "name": "fmContentType", + "type": "string", + "single": true, + "default": "fpnav" } ] }
\ No newline at end of file diff --git a/.frontmatter/config/taxonomy/contenttypes/legal.json b/.frontmatter/config/taxonomy/contenttypes/legal.json index 0a1e3c7..122bff4 100644 --- a/.frontmatter/config/taxonomy/contenttypes/legal.json +++ b/.frontmatter/config/taxonomy/contenttypes/legal.json @@ -79,6 +79,13 @@ "type": "string" } ] + }, + { + "title": "FrontMatter Content Type", + "name": "fmContentType", + "type": "string", + "single": true, + "default": "legal" } ] }
\ No newline at end of file diff --git a/.frontmatter/config/taxonomy/contenttypes/page.json b/.frontmatter/config/taxonomy/contenttypes/page.json new file mode 100644 index 0000000..d522ab2 --- /dev/null +++ b/.frontmatter/config/taxonomy/contenttypes/page.json @@ -0,0 +1,129 @@ +{ + "$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json", + "name": "page", + "pageBundle": false, + "previewPath": null, + "fields": [ + { + "title": "Title", + "name": "title", + "type": "string", + "single": true + }, + { + "title": "Date", + "name": "date", + "type": "datetime", + "default": "{{now}}", + "isPublishDate": true + }, + { + "title": "Description", + "name": "description", + "type": "string" + }, + { + "title": "Draft", + "name": "draft", + "type": "draft" + }, + { + "title": "Tags", + "name": "tags", + "type": "tags" + }, + { + "title": "Icon", + "name": "icon", + "type": "string", + "single": true + }, + { + "title": "Type", + "name": "type", + "type": "choice", + "choices": [ + "default", + "docs", + "minimal" + ], + "default": "default" + }, + { + "title": "Categories", + "name": "categories", + "type": "string", + "single": true, + "default": "Content" + }, + { + "title": "Metadata", + "name": "metadata", + "type": "choice", + "choices": [ + "full", + "original", + "none" + ], + "default": "full" + }, + { + "title": "Download", + "name": "download", + "type": "string", + "single": true + }, + { + "title": "Thumbnail", + "name": "thumbnail", + "type": "fields", + "fields": [ + { + "title": "URL", + "name": "url", + "type": "image" + }, + { + "title": "Author", + "name": "author", + "type": "string", + "single": true + }, + { + "title": "AuthorUrl", + "name": "authorUrl", + "type": "string" + }, + { + "title": "Origin", + "name": "origin", + "type": "string", + "single": true + }, + { + "title": "OriginUrl", + "name": "originUrl", + "type": "string" + } + ] + }, + { + "title": "Author", + "name": "author", + "type": "string", + "single": true + }, + { + "title": "Links", + "name": "navigationLinks", + "type": "list" + }, + { + "title": "FrontMatter Content Type", + "name": "fmContentType", + "type": "string", + "single": true, + "default": "page" + } + ] +}
\ No newline at end of file diff --git a/.frontmatter/config/taxonomy/contenttypes/person.json b/.frontmatter/config/taxonomy/contenttypes/person.json index 52e79b6..f6e1f21 100644 --- a/.frontmatter/config/taxonomy/contenttypes/person.json +++ b/.frontmatter/config/taxonomy/contenttypes/person.json @@ -88,6 +88,13 @@ "title": "modules", "name": "modules", "type": "string" + }, + { + "title": "FrontMatter Content Type", + "name": "fmContentType", + "type": "string", + "single": true, + "default": "person" } ] }
\ No newline at end of file diff --git a/.frontmatter/config/taxonomy/contenttypes/post.json b/.frontmatter/config/taxonomy/contenttypes/post.json index a83336a..c78279b 100644 --- a/.frontmatter/config/taxonomy/contenttypes/post.json +++ b/.frontmatter/config/taxonomy/contenttypes/post.json @@ -77,6 +77,13 @@ "type": "string" } ] + }, + { + "title": "FrontMatter Content Type", + "name": "fmContentType", + "type": "string", + "single": true, + "default": "post" } ] }
\ No newline at end of file diff --git a/.frontmatter/config/taxonomy/contenttypes/reason.json b/.frontmatter/config/taxonomy/contenttypes/reason.json index 688c762..cb36330 100644 --- a/.frontmatter/config/taxonomy/contenttypes/reason.json +++ b/.frontmatter/config/taxonomy/contenttypes/reason.json @@ -30,7 +30,7 @@ "name": "categories", "type": "string", "single": true, - "default": "reason" + "default": "Reason" }, { "title": "Weight", diff --git a/.frontmatter/config/taxonomy/contenttypes/video.json b/.frontmatter/config/taxonomy/contenttypes/video.json new file mode 100644 index 0000000..a003c52 --- /dev/null +++ b/.frontmatter/config/taxonomy/contenttypes/video.json @@ -0,0 +1,44 @@ +{ + "$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json", + "name": "video", + "pageBundle": false, + "previewPath": null, + "fields": [ + { + "title": "Title", + "name": "title", + "type": "string", + "single": true + }, + { + "title": "Description", + "name": "description", + "type": "string" + }, + { + "title": "Categories", + "name": "categories", + "type": "string", + "single": true, + "default": "Video" + }, + { + "title": "Type", + "name": "type", + "type": "choice", + "choices": [ + "default", + "docs", + "minimal" + ], + "default": "minimal" + }, + { + "title": "FrontMatter Content Type", + "name": "fmContentType", + "type": "string", + "single": true, + "default": "video" + } + ] +}
\ No newline at end of file |
