summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.frontmatter/config/content/snippets/button.json3
-rw-r--r--.frontmatter/config/content/snippets/card.json56
-rw-r--r--.frontmatter/config/content/snippets/icon.json27
-rw-r--r--.frontmatter/config/taxonomy/contenttypes/fpnav.json1
-rw-r--r--.frontmatter/config/taxonomy/contenttypes/person.json1
-rw-r--r--.frontmatter/config/taxonomy/contenttypes/reason.json1
-rw-r--r--.frontmatter/templates/fpnav.md16
-rwxr-xr-xcontent/evidence/blacklisted.md20
-rw-r--r--content/fpnav/bryan-alex-abernathy.md2
-rw-r--r--content/fpnav/chief-douglas-randall-matthews.md6
-rw-r--r--content/fpnav/erica-simmons-tyler.md2
-rw-r--r--content/fpnav/index.md6
-rw-r--r--content/fpnav/ryran-traylor.md18
-rw-r--r--content/fpnav/sean-townson.md18
-rwxr-xr-xcontent/privacy.md1
-rw-r--r--drafts/bill-lifsey.md18
-rw-r--r--drafts/truman-boyle.md18
-rw-r--r--frontmatter.json48
-rw-r--r--hugo_stats.json33
19 files changed, 277 insertions, 18 deletions
diff --git a/.frontmatter/config/content/snippets/button.json b/.frontmatter/config/content/snippets/button.json
index 9181a19..0b3d773 100644
--- a/.frontmatter/config/content/snippets/button.json
+++ b/.frontmatter/config/content/snippets/button.json
@@ -18,8 +18,7 @@
{
"name": "outline",
"title": "Outline",
- "type": "boolean",
- "default": true
+ "type": "string"
},
{
"name": "content",
diff --git a/.frontmatter/config/content/snippets/card.json b/.frontmatter/config/content/snippets/card.json
new file mode 100644
index 0000000..df007e4
--- /dev/null
+++ b/.frontmatter/config/content/snippets/card.json
@@ -0,0 +1,56 @@
+{
+ "$schema": "https://beta.frontmatter.codes/config/content.snippets.schema.json",
+ "title": "Card",
+ "description": "Card snippet for bootstrap card generation",
+ "body": [
+ "{{< card align=\"[[align]]\" body=\"none\" button=true class=\"[[class]]\" header=\"none\" footer=\"none\" icon=\"[[icon]]\" orientation=\"[[orientation]]\" title=[[title]] wrapper=\"[[wrapper]]\" thumbnail=\"[[thumbnail]]\" path=\"[[path]]\" >}}",
+ "[[content]]",
+ "{{< /card >}}"
+ ],
+ "fields": [
+ {
+ "title": "Align",
+ "name": "align",
+ "type": "string"
+ },
+ {
+ "title": "Class",
+ "name": "class",
+ "type": "string",
+ "default": ""
+ },
+ {
+ "title": "Icon",
+ "name": "icon",
+ "type": "string"
+ },
+ {
+ "title": "Orientation",
+ "name": "orientation",
+ "type": "string",
+ "default": "stacked"
+ },
+ {
+ "title": "Title",
+ "name": "title",
+ "type": "string"
+ },
+ {
+ "title": "Wrapper",
+ "name": "wrapper",
+ "type": "string",
+ "default": ""
+ },
+ {
+ "title": "Thumbnail",
+ "name": "thumbnail",
+ "type": "string"
+ },
+ {
+ "title": "Path",
+ "name": "path",
+ "type": "string"
+ }
+ ],
+ "isMediaSnippet": false
+}
diff --git a/.frontmatter/config/content/snippets/icon.json b/.frontmatter/config/content/snippets/icon.json
new file mode 100644
index 0000000..cf924ba
--- /dev/null
+++ b/.frontmatter/config/content/snippets/icon.json
@@ -0,0 +1,27 @@
+{
+ "$schema": "https://beta.frontmatter.codes/config/content.snippets.schema.json",
+ "title": "Icon",
+ "description": "Icon Shortcode for font-awesome",
+ "body": "{{< fas [[icon]] spacing [[size]] [[animation]] >}}",
+ "fields": [
+ {
+ "title": "Icon",
+ "name": "icon",
+ "type": "string",
+ "single": true
+ },
+ {
+ "title": "Size",
+ "name": "size",
+ "type": "string",
+ "single": true
+ },
+ {
+ "title": "Animation",
+ "name": "animation",
+ "type": "string",
+ "single": true
+ }
+ ],
+ "isMediaSnippet": false
+} \ No newline at end of file
diff --git a/.frontmatter/config/taxonomy/contenttypes/fpnav.json b/.frontmatter/config/taxonomy/contenttypes/fpnav.json
index 2db3431..ea7c49b 100644
--- a/.frontmatter/config/taxonomy/contenttypes/fpnav.json
+++ b/.frontmatter/config/taxonomy/contenttypes/fpnav.json
@@ -2,6 +2,7 @@
"$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json",
"name": "fpnav",
"pageBundle": false,
+ "template": "[[workspace]]/.frontmatter/templates/fpnav.md",
"previewPath": null,
"fields": [
{
diff --git a/.frontmatter/config/taxonomy/contenttypes/person.json b/.frontmatter/config/taxonomy/contenttypes/person.json
index 1b8dd07..52e79b6 100644
--- a/.frontmatter/config/taxonomy/contenttypes/person.json
+++ b/.frontmatter/config/taxonomy/contenttypes/person.json
@@ -2,6 +2,7 @@
"$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json",
"name": "person",
"pageBundle": false,
+ "template": "[[workspace]]/.frontmatter/templates/persons.md",
"fields": [
{
"title": "Title",
diff --git a/.frontmatter/config/taxonomy/contenttypes/reason.json b/.frontmatter/config/taxonomy/contenttypes/reason.json
index daebf48..688c762 100644
--- a/.frontmatter/config/taxonomy/contenttypes/reason.json
+++ b/.frontmatter/config/taxonomy/contenttypes/reason.json
@@ -2,6 +2,7 @@
"$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json",
"name": "reason",
"pageBundle": false,
+ "template": "[[workspace]]/.frontmatter/templates/reason.md",
"previewPath": null,
"fields": [
{
diff --git a/.frontmatter/templates/fpnav.md b/.frontmatter/templates/fpnav.md
new file mode 100644
index 0000000..ed7449d
--- /dev/null
+++ b/.frontmatter/templates/fpnav.md
@@ -0,0 +1,16 @@
+---
+title: [[title]]
+categories: fpnav
+weight: 40
+draft: false
+nested: true
+type: minimal
+thumbnail: https://res.cloudinary.com/solardump/image/upload/v1729406674/persons/user.png
+fmContentType: fpnav
+---
+
+<!-- FM:Snippet:Start data:{"id":"button","fields":[]} -->
+{{< button relref="" outline= >}}
+
+{{< /button >}}
+<!-- FM:Snippet:End --> \ No newline at end of file
diff --git a/content/evidence/blacklisted.md b/content/evidence/blacklisted.md
index 000e291..88a6117 100755
--- a/content/evidence/blacklisted.md
+++ b/content/evidence/blacklisted.md
@@ -1,16 +1,28 @@
---
-title: "Blacklabeled and Blacklisted."
-description: "An all not too surprising probability."
+title: Blacklabeled and Blacklisted.
+description: An all not too surprising probability.
date: 2024-09-07T18:18:29-04:00
-lastmod: 2024-09-07T18:18:29-04:00
type: docs
-tags: ["blacklabeled", "blacklisted", "suspicious", "difficulties", "legal", "attorneys", "local", "media", "news", "pressure", "oppression"]
+draft: false
+tags:
+ - blacklabeled
+ - blacklisted
+ - suspicious
+ - difficulties
+ - legal
+ - attorneys
+ - local
+ - media
+ - news
+ - pressure
+ - oppression
thumbnail:
url: https://res.cloudinary.com/solardump/image/upload/v1726950749/pages/photo-1627830841791-cbecdf0dff94.jpg
author: Johnathan Cooper
authorURL: https://unsplash.com/@theshuttervision
origin: Unsplash
originURL: https://unsplash.com/photos/text-uHxkvo9-fuE
+fmContentType: docs
---
When all this started, we were hesitant to draw conclusions, and even more hesitant to believe the conclusions we drew. Regardless of being the most probable and/or reasonable explanation, we had the foreknowledge to know our conclusions would not be easy for others to accept, and even more difficult to prove.
diff --git a/content/fpnav/bryan-alex-abernathy.md b/content/fpnav/bryan-alex-abernathy.md
index b7173cf..8bf60fa 100644
--- a/content/fpnav/bryan-alex-abernathy.md
+++ b/content/fpnav/bryan-alex-abernathy.md
@@ -1,5 +1,5 @@
---
-title: Bryan Alex Abernathy
+title: Bryan Abernathy
categories: fpnav
weight: 5
draft: false
diff --git a/content/fpnav/chief-douglas-randall-matthews.md b/content/fpnav/chief-douglas-randall-matthews.md
index 2d4043d..202771e 100644
--- a/content/fpnav/chief-douglas-randall-matthews.md
+++ b/content/fpnav/chief-douglas-randall-matthews.md
@@ -1,5 +1,5 @@
---
-title: Chief Douglas Randall Matthews
+title: Doug Matthews
categories: fpnav
weight: 1
draft: false
@@ -12,7 +12,5 @@ fmContentType: fpnav
Doug Randal Matthews is the current Fire Chief for Lamar County, a cousin of Brian Alex Abernathy, son-in-law to commissioner Truman Boyle, and the primarily antagonist responsible for the majority of troubles experienced by our family since 2020. He violated state law, stole time from the county, borrowed equipment time from a contracting company in ATL, related mistruths, and ensured our home was devastated.
<!-- FM:Snippet:Start data:{"id":"button","fields":[]} -->
-{{< button relref="persons/dmatthews" outline=true >}}
-To Profile
-{{< /button >}}
+{{< button href="/persons/dmatthews/" icon="fa id-card" outline=true />}}
<!-- FM:Snippet:End --> \ No newline at end of file
diff --git a/content/fpnav/erica-simmons-tyler.md b/content/fpnav/erica-simmons-tyler.md
index 32ac91b..b59eea8 100644
--- a/content/fpnav/erica-simmons-tyler.md
+++ b/content/fpnav/erica-simmons-tyler.md
@@ -1,5 +1,5 @@
---
-title: Erica Simmons Tyler
+title: Erica Tyler
categories: fpnav
weight: 10
draft: false
diff --git a/content/fpnav/index.md b/content/fpnav/index.md
index cd2dbd8..0e21338 100644
--- a/content/fpnav/index.md
+++ b/content/fpnav/index.md
@@ -4,5 +4,9 @@ title: Officials and individuals involved.
draft: false
---
-{{< fas people-line fa-10x text-secondary >}}
+{{< fas fa-people-robbery spacing fa-10x fa-fade-beat >}}{{< fas fa-person-harassing spacing fa-10x fa-shake >}}{{< fas right-long spacing fa-10x >}}{{< fas fa-house-crack spacing fa-10x fa-bounce >}}{{< fas fa-person-falling-burst spacing fa-10x fa-spin >}}
{ .text-center .justify-content-center }
+
+<!-- FM:Snippet:Start data:{"id":"card","fields":[{"name":"align","value":"center"},{"name":"class","value":""},{"name":"icon","value":"fa-user-group"},{"name":"orientation","value":"horizontal"},{"name":"title","value":"Persons"},{"name":"wrapper","value":""},{"name":"thumbnail","value":""},{"name":"path","value":"/persons/"},{"name":"content","value":""}]} -->
+{{< card align="center" icon="fas people-group" body="full" button=true header="none" footer="none" orientation="horizontal" path="/persons/" />}}
+<!-- FM:Snippet:End --> \ No newline at end of file
diff --git a/content/fpnav/ryran-traylor.md b/content/fpnav/ryran-traylor.md
new file mode 100644
index 0000000..df7a85a
--- /dev/null
+++ b/content/fpnav/ryran-traylor.md
@@ -0,0 +1,18 @@
+---
+title: Ryran Traylor
+categories: fpnav
+weight: 55
+draft: false
+nested: true
+type: minimal
+thumbnail: "https://res.cloudinary.com/solardump/image/upload/v1729406674/persons/user.png"
+fmContentType: fpnav
+---
+
+We have known Ryran for years, and thought highly of him. He is polite in person, but we have felt betrayed occasionally. We have tried to be friendly, gone out of our way to make excuses, but in the end feel we were just bitten in the ass for it.
+
+<!-- FM:Snippet:Start data:{"id":"button","fields":[]} -->
+{{< button relref="persons/rtraylor" outline=true >}}
+To Profile.
+{{< /button >}}
+<!-- FM:Snippet:End --> \ No newline at end of file
diff --git a/content/fpnav/sean-townson.md b/content/fpnav/sean-townson.md
new file mode 100644
index 0000000..2c68060
--- /dev/null
+++ b/content/fpnav/sean-townson.md
@@ -0,0 +1,18 @@
+---
+title: Sean Townson
+categories: fpnav
+weight: 40
+draft: false
+nested: true
+type: minimal
+thumbnail: https://res.cloudinary.com/solardump/image/upload/v1729406674/persons/user.png
+fmContentType: fpnav
+---
+
+Sean Townson is the County Administrator for Lamar County, and as such, he is responsible for processing complaints against county employees and to present those complaints to the board of commissioners. He has been openly defiant about performing these duties, has refused to process all complaints without any explanation, and will not hold any employee or official accountable. A practitioner of lawlessness.
+
+<!-- FM:Snippet:Start data:{"id":"button","fields":[]} -->
+{{< button relref="persons/stownson" outline=true >}}
+To Profile.
+{{< /button >}}
+<!-- FM:Snippet:End --> \ No newline at end of file
diff --git a/content/privacy.md b/content/privacy.md
index eb3207d..5ffe789 100755
--- a/content/privacy.md
+++ b/content/privacy.md
@@ -8,6 +8,7 @@ tags:
- policy
categories:
- Content
+draft: false
---
Last updated: September 07, 2024
diff --git a/drafts/bill-lifsey.md b/drafts/bill-lifsey.md
new file mode 100644
index 0000000..05bd22e
--- /dev/null
+++ b/drafts/bill-lifsey.md
@@ -0,0 +1,18 @@
+---
+title: Bill Lifsey
+categories: fpnav
+weight: 60
+draft: false
+nested: false
+type: minimal
+thumbnail: https://res.cloudinary.com/solardump/image/upload/v1729406674/persons/user.png
+fmContentType: fpnav
+---
+
+Bill Lifsey was the previous attorney for Lamar County. He is also the preferred real estate attorney used by both the Fire Chief Douglass Matthews, and Alex Brian Abernathy. In particular, he was the real estate attorney used by the Fire Chief to purchase the property he received at a discounted price for brokering the sale of the property across the street.
+
+<!-- FM:Snippet:Start data:{"id":"button","fields":[]} -->
+{{< button relref="persons/blifsey/" outline=true >}}
+To Profile.
+{{< /button >}}
+<!-- FM:Snippet:End --> \ No newline at end of file
diff --git a/drafts/truman-boyle.md b/drafts/truman-boyle.md
new file mode 100644
index 0000000..8a91d43
--- /dev/null
+++ b/drafts/truman-boyle.md
@@ -0,0 +1,18 @@
+---
+title: Truman Boyle
+categories: fpnav
+weight: 65
+draft: true
+nested: false
+type: minimal
+thumbnail: https://res.cloudinary.com/solardump/image/upload/v1729406674/persons/user.png
+fmContentType: fpnav
+---
+
+Truman Boyle is the current newly elected commissioner for the county who defeated Nancy Thrash in the primary election. He is also a retired Georgia State Patrolman, and the former father-in-law to the county's fire chief, Douglas Matthews. The timing of his recent appearance on the political stage and it coinciding with the events surrounding what happened to our home raises suspicion regarding what his real motivation is for joining the county commissioners.
+
+<!-- FM:Snippet:Start data:{"id":"button","fields":[]} -->
+{{< button relref="#" outline=true >}}
+To Profile
+{{< /button >}}
+<!-- FM:Snippet:End --> \ No newline at end of file
diff --git a/frontmatter.json b/frontmatter.json
index e5b4ef2..f6b3953 100644
--- a/frontmatter.json
+++ b/frontmatter.json
@@ -9,5 +9,51 @@
"frontMatter.git.enabled": true,
"frontMatter.preview.host": "http://192.168.1.99:1313",
"frontMatter.website.host": "https://corruptlamar.com",
- "frontMatter.dashboard.openOnStart": true
+ "frontMatter.dashboard.openOnStart": true,
+ "frontMatter.taxonomy.contentTypes": [
+ {
+ "name": "default",
+ "pageBundle": false,
+ "previewPath": null,
+ "fields": [
+ {
+ "title": "Title",
+ "name": "title",
+ "type": "string"
+ },
+ {
+ "title": "Description",
+ "name": "description",
+ "type": "string"
+ },
+ {
+ "title": "Publishing date",
+ "name": "date",
+ "type": "datetime",
+ "default": "{{now}}",
+ "isPublishDate": true
+ },
+ {
+ "title": "Content preview",
+ "name": "preview",
+ "type": "image"
+ },
+ {
+ "title": "Is in draft",
+ "name": "draft",
+ "type": "draft"
+ },
+ {
+ "title": "Tags",
+ "name": "tags",
+ "type": "tags"
+ },
+ {
+ "title": "Categories",
+ "name": "categories",
+ "type": "categories"
+ }
+ ]
+ }
+ ]
} \ No newline at end of file
diff --git a/hugo_stats.json b/hugo_stats.json
index 514a17e..5bcd006 100644
--- a/hugo_stats.json
+++ b/hugo_stats.json
@@ -12,7 +12,6 @@
"figure",
"footer",
"form",
- "h1",
"h2",
"h3",
"h4",
@@ -62,6 +61,7 @@
"classes": [
"active",
"align-items-center",
+ "align-items-end",
"align-middle",
"align-self-center",
"anchor",
@@ -101,6 +101,8 @@
"card",
"card-body",
"card-body-link",
+ "card-button",
+ "card-icon",
"card-img-bg",
"card-img-h100",
"card-img-top",
@@ -163,25 +165,35 @@
"fa-arrow-left",
"fa-arrow-right",
"fa-book-open",
+ "fa-bounce",
+ "fa-chevron-right",
"fa-circle-info",
"fa-download",
"fa-ellipsis",
"fa-exclamation",
"fa-face-frown",
"fa-facebook",
+ "fa-fade-beat",
"fa-fluid",
"fa-fw",
"fa-globe",
"fa-heart",
"fa-house",
+ "fa-house-crack",
"fa-link",
"fa-linkedin",
"fa-moon",
- "fa-people-line",
+ "fa-people-group",
+ "fa-people-robbery",
+ "fa-person-falling-burst",
+ "fa-person-harassing",
+ "fa-right-long",
"fa-rocket",
+ "fa-shake",
"fa-share-nodes",
"fa-solar-panel",
"fa-sort",
+ "fa-spin",
"fa-sun",
"fa-triangle-exclamation",
"fa-whatsapp",
@@ -246,6 +258,7 @@
"mb-3",
"mb-5",
"mb-lg-5",
+ "mb-n4",
"me-auto",
"mermaid",
"middle-bar",
@@ -346,6 +359,7 @@
"show",
"sidebar-overflow",
"small",
+ "spacing",
"start-0",
"start-50",
"sticky-top",
@@ -446,6 +460,8 @@
"evidenciary-artifacts",
"evidentiary-artifacts",
"fa-face-frown",
+ "fa-id-card",
+ "fa-people-group",
"fab-facebook",
"fab-linkedin",
"fab-whatsapp",
@@ -458,6 +474,7 @@
"fas-arrow-left",
"fas-arrow-right",
"fas-book-open",
+ "fas-chevron-right",
"fas-circle-info",
"fas-download",
"fas-ellipsis",
@@ -465,9 +482,14 @@
"fas-globe",
"fas-heart",
"fas-house",
+ "fas-house-crack",
"fas-link",
"fas-moon",
- "fas-people-line",
+ "fas-people-group",
+ "fas-people-robbery",
+ "fas-person-falling-burst",
+ "fas-person-harassing",
+ "fas-right-long",
"fas-rocket",
"fas-share-nodes",
"fas-solar-panel",
@@ -510,6 +532,8 @@
"nav-fpnav-5",
"nav-fpnav-6",
"nav-fpnav-7",
+ "nav-fpnav-8",
+ "nav-fpnav-9",
"nav-fpnav-btn-0",
"nav-fpnav-btn-1",
"nav-fpnav-btn-2",
@@ -518,6 +542,8 @@
"nav-fpnav-btn-5",
"nav-fpnav-btn-6",
"nav-fpnav-btn-7",
+ "nav-fpnav-btn-8",
+ "nav-fpnav-btn-9",
"navbar-0-collapse",
"navbar-mode",
"navbar-mode-checkbox",
@@ -531,7 +557,6 @@
"personal-data",
"persons",
"posts",
- "privacy-policy",
"property-involvement",
"protected-by-the-county",
"reasons",