From 25c06153902c63d8b9e502bb465d3b0a33174572 Mon Sep 17 00:00:00 2001 From: anoduck <9925396+anoduck@users.noreply.github.com> Date: Sun, 3 Nov 2024 07:42:09 -0500 Subject: feat(content): :sparkles: Alias creations, new content, frontmatter configuration Big push: Creation of aliases for google, required new content, and further changes to frontmatter configuration. #24 Otter links work. --- .frontmatter/config/taxonomy/contenttypes/content.json | 12 ++++++++++++ .frontmatter/config/taxonomy/contenttypes/docs.json | 17 +++++++++++++++++ .frontmatter/config/taxonomy/contenttypes/evidence.json | 5 +++++ .frontmatter/config/taxonomy/contenttypes/legal.json | 5 +++++ .frontmatter/config/taxonomy/contenttypes/page.json | 5 +++++ .frontmatter/config/taxonomy/contenttypes/person.json | 5 +++++ .frontmatter/config/taxonomy/contenttypes/post.json | 5 +++++ .frontmatter/config/taxonomy/contenttypes/reason.json | 5 +++++ .frontmatter/config/taxonomy/contenttypes/video.json | 11 +++++++++++ 9 files changed, 70 insertions(+) (limited to '.frontmatter/config') diff --git a/.frontmatter/config/taxonomy/contenttypes/content.json b/.frontmatter/config/taxonomy/contenttypes/content.json index 30bf59f..fa49ebf 100644 --- a/.frontmatter/config/taxonomy/contenttypes/content.json +++ b/.frontmatter/config/taxonomy/contenttypes/content.json @@ -27,6 +27,11 @@ "name": "draft", "type": "draft" }, + { + "title": "Alias", + "name": "alias", + "type": "list" + }, { "title": "Tags", "name": "tags", @@ -117,6 +122,13 @@ "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/docs.json b/.frontmatter/config/taxonomy/contenttypes/docs.json index 182dc9a..248f033 100644 --- a/.frontmatter/config/taxonomy/contenttypes/docs.json +++ b/.frontmatter/config/taxonomy/contenttypes/docs.json @@ -15,6 +15,11 @@ "name": "description", "type": "string" }, + { + "title": "date", + "name": "date", + "type": "datetime" + }, { "title": "Metadata", "name": "metadata", @@ -59,10 +64,22 @@ "name": "draft", "type": "draft" }, + { + "title": "Alias", + "name": "alias", + "type": "list" + }, { "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/evidence.json b/.frontmatter/config/taxonomy/contenttypes/evidence.json index 44e08fd..f3e70ff 100644 --- a/.frontmatter/config/taxonomy/contenttypes/evidence.json +++ b/.frontmatter/config/taxonomy/contenttypes/evidence.json @@ -64,6 +64,11 @@ "name": "draft", "type": "draft" }, + { + "title": "Alias", + "name": "alias", + "type": "list" + }, { "title": "Modules", "name": "modules", diff --git a/.frontmatter/config/taxonomy/contenttypes/legal.json b/.frontmatter/config/taxonomy/contenttypes/legal.json index 122bff4..ddd05c8 100644 --- a/.frontmatter/config/taxonomy/contenttypes/legal.json +++ b/.frontmatter/config/taxonomy/contenttypes/legal.json @@ -48,6 +48,11 @@ "name": "draft", "type": "draft" }, + { + "title": "Alias", + "name": "alias", + "type": "list" + }, { "title": "thumbnail", "name": "thumbnail", diff --git a/.frontmatter/config/taxonomy/contenttypes/page.json b/.frontmatter/config/taxonomy/contenttypes/page.json index d522ab2..20b225c 100644 --- a/.frontmatter/config/taxonomy/contenttypes/page.json +++ b/.frontmatter/config/taxonomy/contenttypes/page.json @@ -27,6 +27,11 @@ "name": "draft", "type": "draft" }, + { + "title": "Alias", + "name": "alias", + "type": "string" + }, { "title": "Tags", "name": "tags", diff --git a/.frontmatter/config/taxonomy/contenttypes/person.json b/.frontmatter/config/taxonomy/contenttypes/person.json index f6e1f21..e60ce0c 100644 --- a/.frontmatter/config/taxonomy/contenttypes/person.json +++ b/.frontmatter/config/taxonomy/contenttypes/person.json @@ -29,6 +29,11 @@ "name": "draft", "type": "draft" }, + { + "title": "Alias", + "name": "alias", + "type": "list" + }, { "title": "Type", "name": "type", diff --git a/.frontmatter/config/taxonomy/contenttypes/post.json b/.frontmatter/config/taxonomy/contenttypes/post.json index c78279b..4ce4d39 100644 --- a/.frontmatter/config/taxonomy/contenttypes/post.json +++ b/.frontmatter/config/taxonomy/contenttypes/post.json @@ -46,6 +46,11 @@ "name": "draft", "type": "draft" }, + { + "title": "Alias", + "name": "alias", + "type": "list" + }, { "title": "thumbnail", "name": "thumbnail", diff --git a/.frontmatter/config/taxonomy/contenttypes/reason.json b/.frontmatter/config/taxonomy/contenttypes/reason.json index cb36330..106274c 100644 --- a/.frontmatter/config/taxonomy/contenttypes/reason.json +++ b/.frontmatter/config/taxonomy/contenttypes/reason.json @@ -42,6 +42,11 @@ "name": "draft", "type": "draft" }, + { + "title": "Alias", + "name": "alias", + "type": "list" + }, { "title": "Thumbnail", "name": "thumbnail", diff --git a/.frontmatter/config/taxonomy/contenttypes/video.json b/.frontmatter/config/taxonomy/contenttypes/video.json index a003c52..4e1b5b1 100644 --- a/.frontmatter/config/taxonomy/contenttypes/video.json +++ b/.frontmatter/config/taxonomy/contenttypes/video.json @@ -22,6 +22,17 @@ "single": true, "default": "Video" }, + { + "title": "Alias", + "name": "alias", + "type": "list" + }, + { + "title": "Thumbnail", + "name": "thumbnail", + "type": "string", + "single": true + }, { "title": "Type", "name": "type", -- cgit v1.2.3