summaryrefslogtreecommitdiffstats
path: root/.frontmatter
diff options
context:
space:
mode:
authoranoduck <9925396+anoduck@users.noreply.github.com>2024-11-03 07:42:09 -0500
committeranoduck <9925396+anoduck@users.noreply.github.com>2024-11-03 07:42:09 -0500
commit25c06153902c63d8b9e502bb465d3b0a33174572 (patch)
tree81b42f4828b4b92456bd1d9b34c4fe8dcc22c9b0 /.frontmatter
parentebe0b7f231ffa8d3cdd59942ad938a9aae8ce2d4 (diff)
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.
Diffstat (limited to '.frontmatter')
-rw-r--r--.frontmatter/config/taxonomy/contenttypes/content.json12
-rw-r--r--.frontmatter/config/taxonomy/contenttypes/docs.json17
-rw-r--r--.frontmatter/config/taxonomy/contenttypes/evidence.json5
-rw-r--r--.frontmatter/config/taxonomy/contenttypes/legal.json5
-rw-r--r--.frontmatter/config/taxonomy/contenttypes/page.json5
-rw-r--r--.frontmatter/config/taxonomy/contenttypes/person.json5
-rw-r--r--.frontmatter/config/taxonomy/contenttypes/post.json5
-rw-r--r--.frontmatter/config/taxonomy/contenttypes/reason.json5
-rw-r--r--.frontmatter/config/taxonomy/contenttypes/video.json11
-rw-r--r--.frontmatter/database/taxonomyDb.json2
10 files changed, 71 insertions, 1 deletions
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
@@ -28,6 +28,11 @@
"type": "draft"
},
{
+ "title": "Alias",
+ "name": "alias",
+ "type": "list"
+ },
+ {
"title": "Tags",
"name": "tags",
"type": "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
@@ -16,6 +16,11 @@
"type": "string"
},
{
+ "title": "date",
+ "name": "date",
+ "type": "datetime"
+ },
+ {
"title": "Metadata",
"name": "metadata",
"type": "choice",
@@ -60,9 +65,21 @@
"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
@@ -65,6 +65,11 @@
"type": "draft"
},
{
+ "title": "Alias",
+ "name": "alias",
+ "type": "list"
+ },
+ {
"title": "Modules",
"name": "modules",
"type": "string"
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
@@ -49,6 +49,11 @@
"type": "draft"
},
{
+ "title": "Alias",
+ "name": "alias",
+ "type": "list"
+ },
+ {
"title": "thumbnail",
"name": "thumbnail",
"type": "fields",
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
@@ -28,6 +28,11 @@
"type": "draft"
},
{
+ "title": "Alias",
+ "name": "alias",
+ "type": "string"
+ },
+ {
"title": "Tags",
"name": "tags",
"type": "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
@@ -30,6 +30,11 @@
"type": "draft"
},
{
+ "title": "Alias",
+ "name": "alias",
+ "type": "list"
+ },
+ {
"title": "Type",
"name": "type",
"type": "choice",
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
@@ -47,6 +47,11 @@
"type": "draft"
},
{
+ "title": "Alias",
+ "name": "alias",
+ "type": "list"
+ },
+ {
"title": "thumbnail",
"name": "thumbnail",
"type": "fields",
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
@@ -43,6 +43,11 @@
"type": "draft"
},
{
+ "title": "Alias",
+ "name": "alias",
+ "type": "list"
+ },
+ {
"title": "Thumbnail",
"name": "thumbnail",
"type": "image",
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
@@ -23,6 +23,17 @@
"default": "Video"
},
{
+ "title": "Alias",
+ "name": "alias",
+ "type": "list"
+ },
+ {
+ "title": "Thumbnail",
+ "name": "thumbnail",
+ "type": "string",
+ "single": true
+ },
+ {
"title": "Type",
"name": "type",
"type": "choice",
diff --git a/.frontmatter/database/taxonomyDb.json b/.frontmatter/database/taxonomyDb.json
index 68d98ab..77ca6f8 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","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
+{"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","matt","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