From a35b89a5ca8bc36a7f5e3590bd35f89147d243de Mon Sep 17 00:00:00 2001 From: anoduck <9925396+anoduck@users.noreply.github.com> Date: Tue, 13 May 2025 02:12:08 -0400 Subject: feat: adding content New content additions regarding brown field. --- .frontmatter/config/content/snippets/link.json | 2 +- .../taxonomy/contenttypes/communication.json | 4 +- .../config/taxonomy/contenttypes/docs.json | 4 +- .../config/taxonomy/contenttypes/evidence.json | 4 +- .../config/taxonomy/contenttypes/legal.json | 4 +- .../config/taxonomy/contenttypes/news.json | 10 ++- .../config/taxonomy/contenttypes/page.json | 79 +++++++++------------- .../config/taxonomy/contenttypes/person.json | 4 +- .../config/taxonomy/contenttypes/post.json | 4 +- .../config/taxonomy/contenttypes/reason.json | 4 +- .../config/taxonomy/contenttypes/video.json | 4 +- 11 files changed, 57 insertions(+), 66 deletions(-) (limited to '.frontmatter/config') diff --git a/.frontmatter/config/content/snippets/link.json b/.frontmatter/config/content/snippets/link.json index 69ed02a..470f3d1 100644 --- a/.frontmatter/config/content/snippets/link.json +++ b/.frontmatter/config/content/snippets/link.json @@ -14,7 +14,7 @@ }, { "name": "Url", - "title": "Url", + "title": "Slug", "type": "string", "single": true, "default": "" diff --git a/.frontmatter/config/taxonomy/contenttypes/communication.json b/.frontmatter/config/taxonomy/contenttypes/communication.json index b16f115..60efcfa 100644 --- a/.frontmatter/config/taxonomy/contenttypes/communication.json +++ b/.frontmatter/config/taxonomy/contenttypes/communication.json @@ -11,8 +11,8 @@ "single": true }, { - "title": "Url", - "name": "url", + "title": "Slug", + "name": "slug", "type": "string", "single": true }, diff --git a/.frontmatter/config/taxonomy/contenttypes/docs.json b/.frontmatter/config/taxonomy/contenttypes/docs.json index 2fc1a82..f5dedc4 100644 --- a/.frontmatter/config/taxonomy/contenttypes/docs.json +++ b/.frontmatter/config/taxonomy/contenttypes/docs.json @@ -11,8 +11,8 @@ "single": true }, { - "title": "Url", - "name": "url", + "title": "Slug", + "name": "slug", "type": "string", "single": true }, diff --git a/.frontmatter/config/taxonomy/contenttypes/evidence.json b/.frontmatter/config/taxonomy/contenttypes/evidence.json index 5bb3864..9573c97 100644 --- a/.frontmatter/config/taxonomy/contenttypes/evidence.json +++ b/.frontmatter/config/taxonomy/contenttypes/evidence.json @@ -11,8 +11,8 @@ "single": true }, { - "title": "Url", - "name": "url", + "title": "Slug", + "name": "slug", "type": "string", "single": true }, diff --git a/.frontmatter/config/taxonomy/contenttypes/legal.json b/.frontmatter/config/taxonomy/contenttypes/legal.json index 760ba0b..adbefe2 100644 --- a/.frontmatter/config/taxonomy/contenttypes/legal.json +++ b/.frontmatter/config/taxonomy/contenttypes/legal.json @@ -11,8 +11,8 @@ "single": true }, { - "title": "Url", - "name": "url", + "title": "Slug", + "name": "slug", "type": "string", "single": true }, diff --git a/.frontmatter/config/taxonomy/contenttypes/news.json b/.frontmatter/config/taxonomy/contenttypes/news.json index 2d844d0..1e7a2ee 100644 --- a/.frontmatter/config/taxonomy/contenttypes/news.json +++ b/.frontmatter/config/taxonomy/contenttypes/news.json @@ -10,8 +10,8 @@ "type": "string" }, { - "title": "Url", - "name": "url", + "title": "Slug", + "name": "slug", "type": "string", "single": true }, @@ -71,6 +71,12 @@ "type": "string", "single": true, "default": "news" + }, + { + "title": "Last Modified", + "name": "lastmod", + "type": "datetime", + "default": "{{now}}" } ] } \ No newline at end of file diff --git a/.frontmatter/config/taxonomy/contenttypes/page.json b/.frontmatter/config/taxonomy/contenttypes/page.json index 3f1c36b..2f22d5c 100644 --- a/.frontmatter/config/taxonomy/contenttypes/page.json +++ b/.frontmatter/config/taxonomy/contenttypes/page.json @@ -2,19 +2,22 @@ "$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json", "name": "page", "pageBundle": false, - "previewPath": null, + "previewPath": "/", + "trailingSlash": true, "fields": [ { "title": "Title", "name": "title", "type": "string", - "single": true + "single": true, + "default": "" }, { - "title": "Url", - "name": "url", + "title": "Slug", + "name": "slug", "type": "string", - "single": true + "single": true, + "default": "" }, { "title": "Date", @@ -26,12 +29,15 @@ { "title": "Description", "name": "description", - "type": "string" + "type": "string", + "single": false, + "default": "" }, { "title": "Draft", "name": "draft", - "type": "draft" + "type": "draft", + "default": "true" }, { "title": "Layout", @@ -43,18 +49,21 @@ { "title": "Alias", "name": "aliases", - "type": "string" + "type": "list", + "default": [] }, { "title": "Tags", "name": "tags", - "type": "tags" + "type": "tags", + "default": [] }, { "title": "Icon", "name": "icon", "type": "string", - "single": true + "single": true, + "default": "" }, { "title": "Type", @@ -89,52 +98,21 @@ "title": "Download", "name": "download", "type": "string", - "single": true + "single": true, + "default": "" }, { "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 + "single": true, + "default": "" }, { "title": "Links", "name": "navigationLinks", - "type": "list" + "type": "list", + "default": [] }, { "title": "FrontMatter Content Type", @@ -142,6 +120,13 @@ "type": "string", "single": true, "default": "page" + }, + { + "title": "Last Mod", + "name": "lastmod", + "type": "datetime", + "default": "{{now}}", + "isPublishDate": true } ] } \ No newline at end of file diff --git a/.frontmatter/config/taxonomy/contenttypes/person.json b/.frontmatter/config/taxonomy/contenttypes/person.json index 0cad736..ae79922 100644 --- a/.frontmatter/config/taxonomy/contenttypes/person.json +++ b/.frontmatter/config/taxonomy/contenttypes/person.json @@ -11,8 +11,8 @@ "type": "string" }, { - "title": "Url", - "name": "url", + "title": "Slug", + "name": "slug", "type": "string", "single": true }, diff --git a/.frontmatter/config/taxonomy/contenttypes/post.json b/.frontmatter/config/taxonomy/contenttypes/post.json index d26cb9a..d0987bb 100644 --- a/.frontmatter/config/taxonomy/contenttypes/post.json +++ b/.frontmatter/config/taxonomy/contenttypes/post.json @@ -10,8 +10,8 @@ "type": "string" }, { - "title": "Url", - "name": "url", + "title": "Slug", + "name": "slug", "type": "string", "single": true }, diff --git a/.frontmatter/config/taxonomy/contenttypes/reason.json b/.frontmatter/config/taxonomy/contenttypes/reason.json index 064a9e8..5f28302 100644 --- a/.frontmatter/config/taxonomy/contenttypes/reason.json +++ b/.frontmatter/config/taxonomy/contenttypes/reason.json @@ -19,8 +19,8 @@ "single": true }, { - "title": "Url", - "name": "url", + "title": "Slug", + "name": "slug", "type": "string", "single": true }, diff --git a/.frontmatter/config/taxonomy/contenttypes/video.json b/.frontmatter/config/taxonomy/contenttypes/video.json index 37ce684..44e0f0b 100644 --- a/.frontmatter/config/taxonomy/contenttypes/video.json +++ b/.frontmatter/config/taxonomy/contenttypes/video.json @@ -11,8 +11,8 @@ "single": true }, { - "title": "Url", - "name": "url", + "title": "Slug", + "name": "slug", "type": "string", "single": true }, -- cgit v1.2.3