diff options
| author | anoduck <9925396+anoduck@users.noreply.github.com> | 2024-11-05 06:01:38 -0500 |
|---|---|---|
| committer | anoduck <9925396+anoduck@users.noreply.github.com> | 2024-11-05 06:01:38 -0500 |
| commit | c2f904ec773acecabb34c68b0e6756f3f8cc305b (patch) | |
| tree | 9dcec440a1e0d54ad186c8269a63afd70d847589 /.frontmatter/config/taxonomy | |
| parent | 8609f5ddfa3c322912ee705ed6082f93266982b2 (diff) | |
feat(content): :sparkles: Communication section creation
Communication section created, frontmatter type cleaning, configurations, etc...
#28 #27
Diffstat (limited to '.frontmatter/config/taxonomy')
| -rw-r--r-- | .frontmatter/config/taxonomy/contenttypes/communication.json (renamed from .frontmatter/config/taxonomy/contenttypes/docs.json) | 6 | ||||
| -rw-r--r-- | .frontmatter/config/taxonomy/contenttypes/content.json | 134 | ||||
| -rw-r--r-- | .frontmatter/config/taxonomy/contenttypes/index.json | 37 | ||||
| -rw-r--r-- | .frontmatter/config/taxonomy/contenttypes/minimal.json | 36 |
4 files changed, 40 insertions, 173 deletions
diff --git a/.frontmatter/config/taxonomy/contenttypes/docs.json b/.frontmatter/config/taxonomy/contenttypes/communication.json index 248f033..e48aac3 100644 --- a/.frontmatter/config/taxonomy/contenttypes/docs.json +++ b/.frontmatter/config/taxonomy/contenttypes/communication.json @@ -1,6 +1,6 @@ { "$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json", - "name": "docs", + "name": "communication", "pageBundle": false, "previewPath": null, "fields": [ @@ -36,7 +36,7 @@ "name": "categories", "type": "string", "single": true, - "default": "Evidence" + "default": "Communication" }, { "title": "Tags", @@ -79,7 +79,7 @@ "name": "fmContentType", "type": "string", "single": true, - "default": "evidence" + "default": "communication" } ] }
\ No newline at end of file diff --git a/.frontmatter/config/taxonomy/contenttypes/content.json b/.frontmatter/config/taxonomy/contenttypes/content.json deleted file mode 100644 index fa49ebf..0000000 --- a/.frontmatter/config/taxonomy/contenttypes/content.json +++ /dev/null @@ -1,134 +0,0 @@ -{ - "$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json", - "name": "content", - "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": "Alias", - "name": "alias", - "type": "list" - }, - { - "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": "person" - } - ] -}
\ No newline at end of file diff --git a/.frontmatter/config/taxonomy/contenttypes/index.json b/.frontmatter/config/taxonomy/contenttypes/index.json new file mode 100644 index 0000000..796682d --- /dev/null +++ b/.frontmatter/config/taxonomy/contenttypes/index.json @@ -0,0 +1,37 @@ +{ + "$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json", + "name": "index", + "pageBundle": false, + "previewPath": null, + "fields": [ + { + "title": "Title", + "name": "title", + "type": "string", + "single": true + }, + { + "title": "Categories", + "name": "categories", + "type": "string", + "single": true + }, + { + "title": "Thumbnail", + "name": "thumbnail", + "type": "string" + }, + { + "title": "Alias", + "name": "alias", + "type": "list" + }, + { + "title": "FrontMatter Content Type", + "name": "fmContentType", + "type": "string", + "single": true, + "default": "index" + } + ] +}
\ No newline at end of file diff --git a/.frontmatter/config/taxonomy/contenttypes/minimal.json b/.frontmatter/config/taxonomy/contenttypes/minimal.json deleted file mode 100644 index bcf6a1d..0000000 --- a/.frontmatter/config/taxonomy/contenttypes/minimal.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json", - "name": "minimal", - "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 - }, - { - "title": "Type", - "name": "type", - "type": "choice", - "choices": [ - "default", - "docs", - "minimal" - ], - "default": "minimal" - } - ] -}
\ No newline at end of file |
