diff options
Diffstat (limited to '')
13 files changed, 290 insertions, 6 deletions
diff --git a/.frontmatter/config/content/pagefolders/content.json b/.frontmatter/config/content/pagefolders/content.json index bbfb592..484da3c 100644 --- a/.frontmatter/config/content/pagefolders/content.json +++ b/.frontmatter/config/content/pagefolders/content.json @@ -6,6 +6,7 @@ "excludeSubdir": true, "previewPath": "", "contentTypes": [ - "page" + "page", + "content" ] }
\ No newline at end of file diff --git a/.frontmatter/config/content/pagefolders/evidence.json b/.frontmatter/config/content/pagefolders/evidence.json index 7996094..0be63e5 100644 --- a/.frontmatter/config/content/pagefolders/evidence.json +++ b/.frontmatter/config/content/pagefolders/evidence.json @@ -5,6 +5,7 @@ "filePrefix": null, "previewPath": "evidence", "contentTypes": [ - "docs" + "docs", + "evidence" ] }
\ No newline at end of file diff --git a/.frontmatter/config/content/pagefolders/video.json b/.frontmatter/config/content/pagefolders/video.json index 7bc6282..bab7499 100644 --- a/.frontmatter/config/content/pagefolders/video.json +++ b/.frontmatter/config/content/pagefolders/video.json @@ -5,6 +5,7 @@ "previewPath": "video", "filePrefix": null, "contentTypes": [ - "minimal" + "minimal", + "video" ] }
\ No newline at end of file diff --git a/.frontmatter/config/taxonomy/contenttypes/content.json b/.frontmatter/config/taxonomy/contenttypes/content.json index 6d3d586..30bf59f 100644 --- a/.frontmatter/config/taxonomy/contenttypes/content.json +++ b/.frontmatter/config/taxonomy/contenttypes/content.json @@ -1,6 +1,6 @@ { "$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json", - "name": "Content", + "name": "content", "pageBundle": false, "previewPath": null, "fields": [ diff --git a/.frontmatter/config/taxonomy/contenttypes/evidence.json b/.frontmatter/config/taxonomy/contenttypes/evidence.json new file mode 100644 index 0000000..44e08fd --- /dev/null +++ b/.frontmatter/config/taxonomy/contenttypes/evidence.json @@ -0,0 +1,80 @@ +{ + "$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json", + "name": "evidence", + "pageBundle": false, + "previewPath": null, + "fields": [ + { + "title": "Title", + "name": "title", + "type": "string", + "single": true + }, + { + "title": "Description", + "name": "description", + "type": "string" + }, + { + "title": "date", + "name": "date", + "type": "datetime" + }, + { + "title": "Metadata", + "name": "metadata", + "type": "choice", + "choices": [ + "full", + "original", + "none" + ], + "default": "full" + }, + { + "title": "Categories", + "name": "categories", + "type": "string", + "single": true, + "default": "Evidence" + }, + { + "title": "Tags", + "name": "tags", + "type": "tags" + }, + { + "title": "Thumbnail", + "name": "thumbnail", + "type": "string" + }, + { + "title": "Type", + "name": "type", + "type": "choice", + "choices": [ + "default", + "docs", + "minimal" + ], + "default": "docs" + }, + { + "title": "Draft", + "name": "draft", + "type": "draft" + }, + { + "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/fpnav.json b/.frontmatter/config/taxonomy/contenttypes/fpnav.json index ea7c49b..2b8b957 100644 --- a/.frontmatter/config/taxonomy/contenttypes/fpnav.json +++ b/.frontmatter/config/taxonomy/contenttypes/fpnav.json @@ -51,6 +51,13 @@ "name": "thumbnail", "type": "string", "single": true + }, + { + "title": "FrontMatter Content Type", + "name": "fmContentType", + "type": "string", + "single": true, + "default": "fpnav" } ] }
\ No newline at end of file diff --git a/.frontmatter/config/taxonomy/contenttypes/legal.json b/.frontmatter/config/taxonomy/contenttypes/legal.json index 0a1e3c7..122bff4 100644 --- a/.frontmatter/config/taxonomy/contenttypes/legal.json +++ b/.frontmatter/config/taxonomy/contenttypes/legal.json @@ -79,6 +79,13 @@ "type": "string" } ] + }, + { + "title": "FrontMatter Content Type", + "name": "fmContentType", + "type": "string", + "single": true, + "default": "legal" } ] }
\ 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..d522ab2 --- /dev/null +++ b/.frontmatter/config/taxonomy/contenttypes/page.json @@ -0,0 +1,129 @@ +{ + "$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": "Categories", + "name": "categories", + "type": "string", + "single": true, + "default": "Content" + }, + { + "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" + }, + { + "title": "FrontMatter Content Type", + "name": "fmContentType", + "type": "string", + "single": true, + "default": "page" + } + ] +}
\ No newline at end of file diff --git a/.frontmatter/config/taxonomy/contenttypes/person.json b/.frontmatter/config/taxonomy/contenttypes/person.json index 52e79b6..f6e1f21 100644 --- a/.frontmatter/config/taxonomy/contenttypes/person.json +++ b/.frontmatter/config/taxonomy/contenttypes/person.json @@ -88,6 +88,13 @@ "title": "modules", "name": "modules", "type": "string" + }, + { + "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/post.json b/.frontmatter/config/taxonomy/contenttypes/post.json index a83336a..c78279b 100644 --- a/.frontmatter/config/taxonomy/contenttypes/post.json +++ b/.frontmatter/config/taxonomy/contenttypes/post.json @@ -77,6 +77,13 @@ "type": "string" } ] + }, + { + "title": "FrontMatter Content Type", + "name": "fmContentType", + "type": "string", + "single": true, + "default": "post" } ] }
\ No newline at end of file diff --git a/.frontmatter/config/taxonomy/contenttypes/reason.json b/.frontmatter/config/taxonomy/contenttypes/reason.json index 688c762..cb36330 100644 --- a/.frontmatter/config/taxonomy/contenttypes/reason.json +++ b/.frontmatter/config/taxonomy/contenttypes/reason.json @@ -30,7 +30,7 @@ "name": "categories", "type": "string", "single": true, - "default": "reason" + "default": "Reason" }, { "title": "Weight", diff --git a/.frontmatter/config/taxonomy/contenttypes/video.json b/.frontmatter/config/taxonomy/contenttypes/video.json new file mode 100644 index 0000000..a003c52 --- /dev/null +++ b/.frontmatter/config/taxonomy/contenttypes/video.json @@ -0,0 +1,44 @@ +{ + "$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json", + "name": "video", + "pageBundle": false, + "previewPath": null, + "fields": [ + { + "title": "Title", + "name": "title", + "type": "string", + "single": true + }, + { + "title": "Description", + "name": "description", + "type": "string" + }, + { + "title": "Categories", + "name": "categories", + "type": "string", + "single": true, + "default": "Video" + }, + { + "title": "Type", + "name": "type", + "type": "choice", + "choices": [ + "default", + "docs", + "minimal" + ], + "default": "minimal" + }, + { + "title": "FrontMatter Content Type", + "name": "fmContentType", + "type": "string", + "single": true, + "default": "video" + } + ] +}
\ No newline at end of file diff --git a/.frontmatter/database/taxonomyDb.json b/.frontmatter/database/taxonomyDb.json index 469d5c4..68d98ab 100644 --- a/.frontmatter/database/taxonomyDb.json +++ b/.frontmatter/database/taxonomyDb.json @@ -1 +1 @@ -{"taxonomy":{"tags":["Abernathy","Alex","Alex Abernathy","Brian","Brian Abernathy","Chief","County","County Attorney","Dayton","Denny Dunn","Donnie","Donnie Simmons","Dougs friends","Erica","Erica Simmons","Erica Tyler","Fire","Fire Chief","Ga","Georgia","Jessica McDaniel","Jessica Simmons","Kardun Homes","Lamar","Lamar Co","Lamar County","Licensing","MIA","Matthews","Property","Simmons","Tyler","Tylers","about","accusation","actor","administrator","allegations","arguments","armored car","attorney","attorneys","audio","back_of_property","bibtex","blacklabeled","blacklisted","bounty","broker","budget","calendar","capital","chairman","chief","chief_matthews","claims","commisioner","commissioner","communication","communications","complaints","corrupt","counsel","county","county administrator","county attorney","county commissioner","county government","county officials","criticism","crooked","dates","dayton","diagram","dialogue","difficulties","direct","disclaimer","documents","doug","douglas","emails","entities","estate","events","evidence","expenses","explanation","fake","favoritism","fcc","financials","fines","fire chief","fire dept","for sale","greed","haddock","harassment","hate","home","income","info","inheritance","intimidation","involved","jeanie","jeanie haddock","junkyard","justice","justification","lamar","lamar county","land","land for sale","law","lawyer","leads","legal","legitimacy","letters","license","lies","local","logs","loss","management","map","matthews","mayfield","mdayton","media","message","meta","mission","negligence","neighborhood","neighbors","news","notices","officials","old Junkyard","opposition","oppression","ordinance","otter","otterai","penalties","people","persecution","person","persons","policy","pressure","privacy","private","private_road","profit","proof","propaganda","property","property for sale","real","real estate","realtime","reasoning","records","references","reflection","relation","research","residents","response","revenue","review","rights","road","ryran","scott","scott mayfield","security","setup","simple minded","site","son","sources","spending","spying","stalkers","stalking","standing","statements","statutes","story","stupid answer","stupid question","subdivision","suspicious","tasks","tax","taxpayer","terms","threatening behavior","timeline","tips","todo","transcription","transcripts","traylor","truth","unsupported","untruths","us","values","video","video-log","violations","vlog","weekend","whistleblowing","who","why","zoning"],"categories":["Content","Evidence","Legal","Person","Post","Reason","Video"]}}
\ No newline at end of file +{"taxonomy":{"tags":["Abernathy","Alex","Alex Abernathy","Brian","Brian Abernathy","Chief","County","County Attorney","Dayton","Denny Dunn","Donnie","Donnie Simmons","Dougs friends","Erica","Erica Simmons","Erica Tyler","Fire","Fire Chief","Ga","Georgia","Jessica McDaniel","Jessica Simmons","Kardun Homes","Lamar","Lamar Co","Lamar County","Licensing","MIA","Matthews","Property","Simmons","Tyler","Tylers","about","accusation","actor","administrator","allegations","arguments","armored car","attorney","attorneys","audio","back_of_property","bibtex","blacklabeled","blacklisted","bounty","broker","budget","calendar","capital","chairman","chief","chief_matthews","claims","commisioner","commissioner","communication","communications","complaints","corrupt","counsel","county","county administrator","county attorney","county commissioner","county government","county officials","criticism","crooked","dates","dayton","diagram","dialogue","difficulties","direct","disclaimer","documents","doug","douglas","emails","entities","estate","events","evidence","expenses","explanation","fake","favoritism","fcc","financials","fines","fire chief","fire dept","for sale","greed","haddock","harassment","hate","home","income","info","inheritance","intimidation","involved","jeanie","jeanie haddock","junkyard","justice","justification","lamar","lamar county","land","land for sale","law","lawyer","leads","legal","legitimacy","letters","license","lies","local","logs","loss","management","map","matthews","mayfield","mdayton","media","message","meta","mission","negligence","neighborhood","neighbors","news","notices","officials","old Junkyard","opposition","oppression","ordinance","ordinances","otter","otterai","penalties","people","persecution","person","persons","policy","pressure","privacy","private","private_road","profit","proof","propaganda","property","property for sale","real","real estate","realtime","reasoning","records","references","reflection","relation","research","residents","response","revenue","review","rights","road","ryran","scott","scott mayfield","security","setup","simple minded","site","son","sources","spending","spying","stalkers","stalking","standing","statements","statutes","story","stupid answer","stupid question","subdivision","suspicious","tasks","tax","taxpayer","terms","threatening behavior","timeline","tips","todo","transcription","transcripts","traylor","truth","unsupported","untruths","us","values","video","video-log","violations","vlog","weekend","whistleblowing","who","why","zoning"],"categories":["Content","Evidence","Legal","Person","Persons","Post","Reason","Video","fpnav","post"]}}
\ No newline at end of file |
