diff options
| author | anoduck <11767-anoduck@users.noreply.gitgud.io> | 2024-10-08 14:50:51 -0400 |
|---|---|---|
| committer | anoduck <11767-anoduck@users.noreply.gitgud.io> | 2024-10-08 14:50:51 -0400 |
| commit | ecc34cd1fde9b4c643474b3783aa001002b91ab9 (patch) | |
| tree | ec3413ffc12d6435b10cb064f5e5956942fb1852 /.frontmatter/config/taxonomy | |
| parent | b8e01bf4e84d3edcd337651322112e998fb01cf4 (diff) | |
ci(.frontMatter): :construction_worker: conf file to conf dir
Divided configuration of FrontMatter into numerous files.
Diffstat (limited to '.frontmatter/config/taxonomy')
| -rw-r--r-- | .frontmatter/config/taxonomy/default.json | 108 | ||||
| -rw-r--r-- | .frontmatter/config/taxonomy/docs.json | 44 | ||||
| -rw-r--r-- | .frontmatter/config/taxonomy/minimal.json | 29 |
3 files changed, 181 insertions, 0 deletions
diff --git a/.frontmatter/config/taxonomy/default.json b/.frontmatter/config/taxonomy/default.json new file mode 100644 index 0000000..a7cb1c5 --- /dev/null +++ b/.frontmatter/config/taxonomy/default.json @@ -0,0 +1,108 @@ +{ + "name": "default", + "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": "Metadata", + "name": "metadata", + "type": "string" + }, + { + "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" + } + ] + }
\ No newline at end of file diff --git a/.frontmatter/config/taxonomy/docs.json b/.frontmatter/config/taxonomy/docs.json new file mode 100644 index 0000000..56da5c5 --- /dev/null +++ b/.frontmatter/config/taxonomy/docs.json @@ -0,0 +1,44 @@ +{ + "name": "Docs", + "pageBundle": false, + "previewPath": null, + "fields": [ + { + "title": "Title", + "name": "title", + "type": "string", + "single": true + }, + { + "title": "Description", + "name": "description", + "type": "string" + }, + { + "title": "Metadata", + "name": "metadata", + "type": "string" + }, + { + "title": "Categories", + "name": "categories", + "type": "choice", + "choices": [ + "Persons", + "Evidence", + "Legal" + ] + }, + { + "title": "Type", + "name": "type", + "type": "choice", + "choices": [ + "default", + "docs", + "minimal" + ], + "default": "docs" + } + ] +}
\ No newline at end of file diff --git a/.frontmatter/config/taxonomy/minimal.json b/.frontmatter/config/taxonomy/minimal.json new file mode 100644 index 0000000..3c730eb --- /dev/null +++ b/.frontmatter/config/taxonomy/minimal.json @@ -0,0 +1,29 @@ +{ + "name": "Minimal", + "pageBundle": false, + "previewPath": null, + "fields": [ + { + "title": "Title", + "name": "title", + "type": "string", + "single": true + }, + { + "title": "Description", + "name": "description", + "type": "string" + }, + { + "title": "Type", + "name": "type", + "type": "choice", + "choices": [ + "default", + "docs", + "minimal" + ], + "default": "minimal" + } + ] + }
\ No newline at end of file |
