diff options
Diffstat (limited to '.frontmatter/config/taxonomy')
| -rw-r--r-- | .frontmatter/config/taxonomy/contenttypes/docs.json (renamed from .frontmatter/config/taxonomy/docs.json) | 1 | ||||
| -rw-r--r-- | .frontmatter/config/taxonomy/contenttypes/legal.json (renamed from .frontmatter/config/taxonomy/legal.json) | 13 | ||||
| -rw-r--r-- | .frontmatter/config/taxonomy/contenttypes/minimal.json | 30 | ||||
| -rw-r--r-- | .frontmatter/config/taxonomy/contenttypes/page.json | 115 | ||||
| -rw-r--r-- | .frontmatter/config/taxonomy/contenttypes/person.json (renamed from .frontmatter/config/taxonomy/person.json) | 1 | ||||
| -rw-r--r-- | .frontmatter/config/taxonomy/contenttypes/post.json | 69 | ||||
| -rw-r--r-- | .frontmatter/config/taxonomy/fieldgroups/.gitkeep | 0 | ||||
| -rw-r--r-- | .frontmatter/config/taxonomy/minimal.json | 29 | ||||
| -rw-r--r-- | .frontmatter/config/taxonomy/page.json | 114 |
9 files changed, 223 insertions, 149 deletions
diff --git a/.frontmatter/config/taxonomy/docs.json b/.frontmatter/config/taxonomy/contenttypes/docs.json index f5fb9c6..f527618 100644 --- a/.frontmatter/config/taxonomy/docs.json +++ b/.frontmatter/config/taxonomy/contenttypes/docs.json @@ -1,4 +1,5 @@ { + "$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json", "name": "Docs", "pageBundle": false, "previewPath": null, diff --git a/.frontmatter/config/taxonomy/legal.json b/.frontmatter/config/taxonomy/contenttypes/legal.json index 176be12..703d2b2 100644 --- a/.frontmatter/config/taxonomy/legal.json +++ b/.frontmatter/config/taxonomy/contenttypes/legal.json @@ -1,4 +1,5 @@ { + "$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json", "name": "Legal", "pageBundle": false, "fields": [ @@ -28,7 +29,7 @@ "title": "type", "name": "type", "type": "string", - "single": "true" + "single": true }, { "title": "draft", @@ -44,31 +45,31 @@ "title": "url", "name": "url", "type": "string", - "single": "true" + "single": true }, { "title": "author", "name": "author", "type": "string", - "single": "true" + "single": true }, { "title": "authorURL", "name": "authorURL", "type": "string", - "single": "true" + "single": true }, { "title": "origin", "name": "origin", "type": "string", - "single": "true" + "single": true }, { "title": "originURL", "name": "originURL", "type": "string", - "single": "true" + "single": true } ] } diff --git a/.frontmatter/config/taxonomy/contenttypes/minimal.json b/.frontmatter/config/taxonomy/contenttypes/minimal.json new file mode 100644 index 0000000..d3fc70d --- /dev/null +++ b/.frontmatter/config/taxonomy/contenttypes/minimal.json @@ -0,0 +1,30 @@ +{ + "$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": "Type", + "name": "type", + "type": "choice", + "choices": [ + "default", + "docs", + "minimal" + ], + "default": "minimal" + } + ] +}
\ 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..cae9564 --- /dev/null +++ b/.frontmatter/config/taxonomy/contenttypes/page.json @@ -0,0 +1,115 @@ +{ + "$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": "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" + } + ] +}
\ No newline at end of file diff --git a/.frontmatter/config/taxonomy/person.json b/.frontmatter/config/taxonomy/contenttypes/person.json index 91fe2c3..24960fa 100644 --- a/.frontmatter/config/taxonomy/person.json +++ b/.frontmatter/config/taxonomy/contenttypes/person.json @@ -1,4 +1,5 @@ { + "$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json", "name": "Persons", "pageBundle": false, "fields": [ diff --git a/.frontmatter/config/taxonomy/contenttypes/post.json b/.frontmatter/config/taxonomy/contenttypes/post.json new file mode 100644 index 0000000..023e39e --- /dev/null +++ b/.frontmatter/config/taxonomy/contenttypes/post.json @@ -0,0 +1,69 @@ +{ + "$schema": "https://frontmatter.codes/config/media.contenttypes.schema.json", + "name": "post", + "pageBundle": false, + "fields": [ + { + "title": "title", + "name": "title", + "type": "string" + }, + { + "title": "description", + "name": "description", + "type": "string" + }, + { + "title": "date", + "name": "date", + "type": "datetime" + }, + { + "title": "type", + "name": "type", + "type": "string" + }, + { + "title": "tags", + "name": "tags", + "type": "tags" + }, + { + "title": "draft", + "name": "draft", + "type": "draft" + }, + { + "title": "thumbnail", + "name": "thumbnail", + "type": "fields", + "fields": [ + { + "title": "url", + "name": "url", + "type": "datetime" + }, + { + "title": "author", + "name": "author", + "type": "datetime" + }, + { + "title": "author-url", + "name": "author-url", + "type": "datetime" + }, + { + "title": "origin", + "name": "origin", + "type": "string" + }, + { + "title": "origin-url", + "name": "origin-url", + "type": "datetime" + } + ] + } + ] +}
\ No newline at end of file diff --git a/.frontmatter/config/taxonomy/fieldgroups/.gitkeep b/.frontmatter/config/taxonomy/fieldgroups/.gitkeep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/.frontmatter/config/taxonomy/fieldgroups/.gitkeep diff --git a/.frontmatter/config/taxonomy/minimal.json b/.frontmatter/config/taxonomy/minimal.json deleted file mode 100644 index 3c730eb..0000000 --- a/.frontmatter/config/taxonomy/minimal.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "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 diff --git a/.frontmatter/config/taxonomy/page.json b/.frontmatter/config/taxonomy/page.json deleted file mode 100644 index 838d8c4..0000000 --- a/.frontmatter/config/taxonomy/page.json +++ /dev/null @@ -1,114 +0,0 @@ -{ - "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": "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" - } - ] - }
\ No newline at end of file |
