diff options
Diffstat (limited to '.frontmatter')
| -rw-r--r-- | .frontmatter/config/content/pagefolders/content.json | 2 | ||||
| -rw-r--r-- | .frontmatter/config/content/pagefolders/legal.json | 2 | ||||
| -rw-r--r-- | .frontmatter/config/taxonomy/legal.json | 75 | ||||
| -rw-r--r-- | .frontmatter/config/taxonomy/page.json (renamed from .frontmatter/config/taxonomy/default.json) | 2 | ||||
| -rw-r--r-- | .frontmatter/config/taxonomy/person.json | 71 | ||||
| -rw-r--r-- | .frontmatter/ui/external.js | 7 |
6 files changed, 156 insertions, 3 deletions
diff --git a/.frontmatter/config/content/pagefolders/content.json b/.frontmatter/config/content/pagefolders/content.json index a5f8455..367b72d 100644 --- a/.frontmatter/config/content/pagefolders/content.json +++ b/.frontmatter/config/content/pagefolders/content.json @@ -4,6 +4,6 @@ "excludeSubdir": true, "previewPath": "", "contentTypes": [ - "default" + "page" ] }
\ No newline at end of file diff --git a/.frontmatter/config/content/pagefolders/legal.json b/.frontmatter/config/content/pagefolders/legal.json index 7c17fcd..4aa2b4d 100644 --- a/.frontmatter/config/content/pagefolders/legal.json +++ b/.frontmatter/config/content/pagefolders/legal.json @@ -4,6 +4,6 @@ "previewPath": "legal", "contentTypes": [ "docs", - "default" + "page" ] }
\ No newline at end of file diff --git a/.frontmatter/config/taxonomy/legal.json b/.frontmatter/config/taxonomy/legal.json new file mode 100644 index 0000000..d306e7f --- /dev/null +++ b/.frontmatter/config/taxonomy/legal.json @@ -0,0 +1,75 @@ +{ + "name": "Legal", + "pageBundle": false, + "fields": [ + { + "title": "title", + "name": "title", + "type": "string", + "single": true + }, + { + "title": "description", + "name": "description", + "type": "string" + }, + { + "title": "date", + "name": "date", + "type": "datetime" + }, + { + "title": "tags", + "name": "tags", + "type": "tags" + }, + { + "title": "type", + "name": "type", + "type": "string", + "single": "true" + }, + { + "title": "draft", + "name": "draft", + "type": "draft" + }, + { + "title": "thumbnail", + "name": "thumbnail", + "type": "fields", + "fields": [ + { + "title": "url", + "name": "url", + "type": "string", + "single": "true" + }, + { + "title": "author", + "name": "author", + "type": "string", + "single": "true" + }, + { + "title": "authorURL", + "name": "authorURL", + "type": "string", + "single": "true" + }, + { + "title": "origin", + "name": "origin", + "type": "string", + "single": "true" + }, + { + "title": "originURL", + "name": "originURL", + "type": "string", + "single": "true" + } + ] + } + ] +}
\ No newline at end of file diff --git a/.frontmatter/config/taxonomy/default.json b/.frontmatter/config/taxonomy/page.json index a7cb1c5..a69cad4 100644 --- a/.frontmatter/config/taxonomy/default.json +++ b/.frontmatter/config/taxonomy/page.json @@ -1,5 +1,5 @@ { - "name": "default", + "name": "page", "pageBundle": false, "previewPath": null, "fields": [ diff --git a/.frontmatter/config/taxonomy/person.json b/.frontmatter/config/taxonomy/person.json new file mode 100644 index 0000000..7e094ed --- /dev/null +++ b/.frontmatter/config/taxonomy/person.json @@ -0,0 +1,71 @@ +{ + "name": "Persons", + "pageBundle": false, + "fields": [ + { + "title": "title", + "name": "title", + "type": "string" + }, + { + "title": "date", + "name": "date", + "type": "datetime" + }, + { + "title": "type", + "name": "type", + "type": "string" + }, + { + "title": "description", + "name": "description", + "type": "string" + }, + { + "title": "tags", + "name": "tags", + "type": "tags" + }, + { + "title": "thumbnail", + "name": "thumbnail", + "type": "fields", + "fields": [ + { + "title": "url", + "name": "url", + "type": "string" + }, + { + "title": "author", + "name": "author", + "type": "string" + }, + { + "title": "author-url", + "name": "author-url", + "type": "string" + }, + { + "title": "origin", + "name": "origin", + "type": "string" + }, + { + "title": "origin-url", + "name": "origin-url", + "type": "string" + } + ] + }, + { + "title": "modules", + "name": "modules", + "type": "choice", + "choices": [ + "mermaid" + ] + } + ] +}
\ No newline at end of file diff --git a/.frontmatter/ui/external.js b/.frontmatter/ui/external.js new file mode 100644 index 0000000..642da9b --- /dev/null +++ b/.frontmatter/ui/external.js @@ -0,0 +1,7 @@ +import { + enableDevelopmentMode, + registerCardImage, + registerCardFooter, + registerPanelView, + registerCustomField +} from "https://cdn.jsdelivr.net/npm/@frontmatter/extensibility/+esm";
\ No newline at end of file |
