From 6458d9da064d11ef97b47897d6417286da2bbe91 Mon Sep 17 00:00:00 2001 From: anoduck <9925396+anoduck@users.noreply.github.com> Date: Sun, 2 Mar 2025 08:29:56 -0500 Subject: =?UTF-8?q?chore:=20=F0=9F=A4=96=20Pushing=20for=20remote=20access?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Pushing so it can later be accessed remotely. --- .frontmatter/config/content/snippets/profile.json | 99 + content/legal/jargon.md | 38 + frontmatter.json | 4 +- go.mod | 2 +- go.sum | 2 + package.json | 6 +- static/img/android-chrome-192x192.png | Bin 0 -> 36359 bytes static/img/android-chrome-512x512.png | Bin 0 -> 185719 bytes static/img/apple-touch-icon.png | Bin 0 -> 32642 bytes static/img/awesome.jpg | Bin 0 -> 25716 bytes static/img/denial.jpg | Bin 0 -> 22510 bytes static/img/drawing.png | Bin 0 -> 175951 bytes static/img/favicon-16x16.png | Bin 0 -> 659 bytes static/img/favicon-32x32.png | Bin 0 -> 1766 bytes static/img/favicon.ico | Bin 0 -> 15406 bytes static/img/logo-dark.png | Bin 0 -> 169020 bytes static/img/logo-front.png | Bin 0 -> 38282 bytes static/img/logo-lg.png | Bin 0 -> 723035 bytes static/img/logo-lg.svg | 5580 +++++++++++++++++++ static/img/logo-light.png | Bin 0 -> 308742 bytes static/img/logo-sm.png | Bin 0 -> 186534 bytes static/img/logo-sm.svg | 5607 ++++++++++++++++++++ static/img/logo.ico | Bin 0 -> 6406 bytes static/img/logo.png | Bin 0 -> 308742 bytes ...f-course-i-didnt-know-why-didnt-you-tell-me.gif | Bin 0 -> 1560216 bytes static/img/palpable.jpg | Bin 0 -> 56308 bytes static/img/relational_map.png | Bin 0 -> 108677 bytes static/img/site.webmanifest | 1 + static/img/something.png | Bin 0 -> 28447 bytes static/img/standard-dump-truck-sizes.png | Bin 0 -> 320528 bytes static/img/von-mises.jpg | Bin 0 -> 135828 bytes 31 files changed, 11334 insertions(+), 5 deletions(-) create mode 100644 .frontmatter/config/content/snippets/profile.json create mode 100644 content/legal/jargon.md create mode 100644 static/img/android-chrome-192x192.png create mode 100644 static/img/android-chrome-512x512.png create mode 100644 static/img/apple-touch-icon.png create mode 100755 static/img/awesome.jpg create mode 100755 static/img/denial.jpg create mode 100755 static/img/drawing.png create mode 100644 static/img/favicon-16x16.png create mode 100644 static/img/favicon-32x32.png create mode 100644 static/img/favicon.ico create mode 100644 static/img/logo-dark.png create mode 100644 static/img/logo-front.png create mode 100644 static/img/logo-lg.png create mode 100644 static/img/logo-lg.svg create mode 100644 static/img/logo-light.png create mode 100644 static/img/logo-sm.png create mode 100644 static/img/logo-sm.svg create mode 100644 static/img/logo.ico create mode 100644 static/img/logo.png create mode 100755 static/img/of-course-i-didnt-know-why-didnt-you-tell-me.gif create mode 100755 static/img/palpable.jpg create mode 100755 static/img/relational_map.png create mode 100644 static/img/site.webmanifest create mode 100755 static/img/something.png create mode 100755 static/img/standard-dump-truck-sizes.png create mode 100755 static/img/von-mises.jpg diff --git a/.frontmatter/config/content/snippets/profile.json b/.frontmatter/config/content/snippets/profile.json new file mode 100644 index 0000000..ab30872 --- /dev/null +++ b/.frontmatter/config/content/snippets/profile.json @@ -0,0 +1,99 @@ +{ + "$schema": "https://beta.frontmatter.codes/config/content.snippets.schema.json", + "title": "Profile page", + "description": "Profile Content Page", + "body": [ + "{{< persona thumbnail=\"[[Thumbnail]]\" title=\"{{title}}\" color=\"[[color]]\" >}}", + "Name: [[Name]]", + "Occupation: [[Occupation]]", + "Position: [[Position]]", + "Affiliations: [[Affiliations]]", + "Relations: [[Relations]]", + "POL Index: [[POL]]", + "Means: [[Means]]", + "Motive: [[Motive]]", + "Opportunity: [[Opportunity]]", + "Bio: [[Bio]]", + "{{< /persona >}}" + ], + "fields": [ + { + "name": "Title", + "title": "Title", + "type": "string", + "single": true, + "default": "'{{ replace .File.ContentBaseName `-` ` ` | title }}'" + }, + { + "name": "Thumbnail", + "title": "Thumbnail", + "type": "string", + "single": true, + "default": "/img/logo.png" + }, + { + "name": "color", + "title": "color", + "type": "string", + "single": true, + "default": "Primary" + }, + { + "name": "Name", + "title": "Name", + "type": "string", + "single": true + }, + { + "name": "Occupation", + "title": "Occupation", + "type": "string", + "single": true + }, + { + "name": "Position", + "title": "Position", + "type": "string", + "single": true + }, + { + "name": "Affiliations", + "title": "Affiliations", + "type": "string", + "single": false + }, + { + "name": "Relations", + "title": "Relations", + "type": "string", + "single": false + }, + { + "name": "POL", + "title": "POL Index", + "type": "string", + "single": true + }, + { + "name": "Means", + "title": "Means", + "type": "string", + "single": false + }, + { + "name": "Motive", + "title": "Motive", + "type": "string", + "single": false + }, + { + "name": "Opportunity", + "title": "Opportunity", + "type": "string", + "single": false + } + ], + "isMediaSnippet": false, + "openingTags": "[[", + "closingTags": "]]" +} \ No newline at end of file diff --git a/content/legal/jargon.md b/content/legal/jargon.md new file mode 100644 index 0000000..8d4a7e0 --- /dev/null +++ b/content/legal/jargon.md @@ -0,0 +1,38 @@ +--- +title: Jargon +description: Relevant terms and phrases and their meaning. +date: 2025-02-24T02:42:07.449Z +tags: + - terms + - vocab + - words +categories: Legal +type: docs +draft: false +alias: [] +thumbnail: + url: https://res.cloudinary.com/solardump/image/upload/v1740364904/legal/photo-1617706076628-26a3c50c0202.jpg + author: "" + authorURL: "" + origin: "" + originURL: "" +fmContentType: legal +--- + +> A basic table of phrases and/or terms and their meaning. + +| Term/Phrase | Meaning | +|----------------------|-----------------------------------------------------------------------------------------------------------------------------------------| +| Malpheasance | The wrongful or unjust doing of some act which the doer has no right to perform, or which he has stipulated by contract not to do. [^1] | +| Standing | The capacity of a party to bring a lawsuit in court. [^2] | +| Pressure Game | A form of coercion in which pressure is applied to an individual to have them do something they would not normall do. [^3] | +| Conflict of Interest | a situation that can undermine a person due to self interest and public interest. [^4] | +| Scheme to Defraud | a planned attempt to deceive and cheat and a conspiracy to carry out a fraud. [^5] | +| Moraul Fraud | the term given to the deceit that is involved in a wrong of moral nature. [^6] | + +[^1]: https://thelawdictionary.org/malfeasance/ +[^2]: https://www.law.cornell.edu/wex/Standing +[^3]: TBD +[^4]: https://thelawdictionary.org/conflict-of-interest/ +[^5]: https://thelawdictionary.org/scheme-to-defraud/ +[^6]: https://thelawdictionary.org/moral-fraud/ \ No newline at end of file diff --git a/frontmatter.json b/frontmatter.json index cd15a99..99e7647 100644 --- a/frontmatter.json +++ b/frontmatter.json @@ -1,12 +1,14 @@ { "$schema": "https://beta.frontmatter.codes/frontmatter.schema.json", - "frontMatter.content.publicFolder": "assets/img", + "frontMatter.content.publicFolder": "static", "frontMatter.taxonomy.slugTemplate": "{{Title}}", "frontMatter.taxonomy.alignFilename": false, "frontMatter.templates.enabled": true, "frontMatter.templates.folder": ".frontmatter/templates/", "frontMatter.framework.id": "hugo", "frontMatter.git.enabled": true, + "frontMatter.git.requiresCommitMessage": ["develop"], + "frontMatter.git.disableOnBranches": ["main"], "frontMatter.preview.host": "http://localhost:1313", "frontMatter.website.host": "https://corruptlamar.com", "frontMatter.dashboard.openOnStart": true diff --git a/go.mod b/go.mod index 93f8fd7..793adcc 100644 --- a/go.mod +++ b/go.mod @@ -21,6 +21,6 @@ require ( github.com/gethinode/mod-mermaid v1.1.22 // indirect github.com/gethinode/mod-simple-datatables v1.1.7 // indirect github.com/gethinode/mod-utils/v2 v2.10.0 // indirect - github.com/nextapps-de/flexsearch v0.0.0-20250210141409-f78ebb388862 // indirect + github.com/nextapps-de/flexsearch v0.0.0-20250301115249-5bcbc72dac51 // indirect github.com/twbs/bootstrap v5.3.3+incompatible // indirect ) diff --git a/go.sum b/go.sum index be724cc..c11e0b5 100644 --- a/go.sum +++ b/go.sum @@ -138,5 +138,7 @@ github.com/nextapps-de/flexsearch v0.0.0-20240501124520-961c3ae84a87 h1:6PNbL0/L github.com/nextapps-de/flexsearch v0.0.0-20240501124520-961c3ae84a87/go.mod h1:5GdMfPAXzbA2gXBqTjC6l27kioSYzHlqDMh0+wyx7sU= github.com/nextapps-de/flexsearch v0.0.0-20250210141409-f78ebb388862 h1:+kGQ+34t7Bv0mbwTGUxwQU2ruuac8jsHEvcleSRUI3M= github.com/nextapps-de/flexsearch v0.0.0-20250210141409-f78ebb388862/go.mod h1:5GdMfPAXzbA2gXBqTjC6l27kioSYzHlqDMh0+wyx7sU= +github.com/nextapps-de/flexsearch v0.0.0-20250301115249-5bcbc72dac51 h1:6MAa9jMWVjtEQnEDPaVvxCvvhAv0fjmiDM+09ZNc1Po= +github.com/nextapps-de/flexsearch v0.0.0-20250301115249-5bcbc72dac51/go.mod h1:5GdMfPAXzbA2gXBqTjC6l27kioSYzHlqDMh0+wyx7sU= github.com/twbs/bootstrap v5.3.3+incompatible h1:goFoqinzdHfkeegpFP7pvhbd0g+A3O2hbU3XCjuNrEQ= github.com/twbs/bootstrap v5.3.3+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0= diff --git a/package.json b/package.json index 91de10b..8989c17 100644 --- a/package.json +++ b/package.json @@ -43,13 +43,13 @@ "autoprefixer": "^10.4.20", "cssnano": "^7.0.6", "cssnano-preset-advanced": "^7.0.6", - "hugo-bin": "0.140.1", + "hugo-bin": "0.142.0", "purgecss-whitelister": "^2.4.0" }, "devDependencies": { "@gethinode/netlify-plugin-dartsass": "^0.3.0", "@knight-lab/timelinejs": "^3.9.6", - "eslint": "^9.20.1", + "eslint": "^9.21.0", "markdownlint-cli2": "^0.17.2", "neostandard": "^0.12.1", "netlify-plugin-hugo-cache-resources": "^0.2.1", @@ -57,7 +57,7 @@ "postcss-cli": "^11.0.0", "rexreplace": "^7.1.12", "rimraf": "^6.0.1", - "stylelint": "^16.14.1", + "stylelint": "^16.15.0", "stylelint-config-standard-scss": "^14.0.0" }, "optionalDependencies": { diff --git a/static/img/android-chrome-192x192.png b/static/img/android-chrome-192x192.png new file mode 100644 index 0000000..c6aa540 Binary files /dev/null and b/static/img/android-chrome-192x192.png differ diff --git a/static/img/android-chrome-512x512.png b/static/img/android-chrome-512x512.png new file mode 100644 index 0000000..e9b3bf6 Binary files /dev/null and b/static/img/android-chrome-512x512.png differ diff --git a/static/img/apple-touch-icon.png b/static/img/apple-touch-icon.png new file mode 100644 index 0000000..2901187 Binary files /dev/null and b/static/img/apple-touch-icon.png differ diff --git a/static/img/awesome.jpg b/static/img/awesome.jpg new file mode 100755 index 0000000..9ec21be Binary files /dev/null and b/static/img/awesome.jpg differ diff --git a/static/img/denial.jpg b/static/img/denial.jpg new file mode 100755 index 0000000..89b19a1 Binary files /dev/null and b/static/img/denial.jpg differ diff --git a/static/img/drawing.png b/static/img/drawing.png new file mode 100755 index 0000000..9a793a7 Binary files /dev/null and b/static/img/drawing.png differ diff --git a/static/img/favicon-16x16.png b/static/img/favicon-16x16.png new file mode 100644 index 0000000..a33e087 Binary files /dev/null and b/static/img/favicon-16x16.png differ diff --git a/static/img/favicon-32x32.png b/static/img/favicon-32x32.png new file mode 100644 index 0000000..f6d62ac Binary files /dev/null and b/static/img/favicon-32x32.png differ diff --git a/static/img/favicon.ico b/static/img/favicon.ico new file mode 100644 index 0000000..c22074d Binary files /dev/null and b/static/img/favicon.ico differ diff --git a/static/img/logo-dark.png b/static/img/logo-dark.png new file mode 100644 index 0000000..100211f Binary files /dev/null and b/static/img/logo-dark.png differ diff --git a/static/img/logo-front.png b/static/img/logo-front.png new file mode 100644 index 0000000..5feb8a6 Binary files /dev/null and b/static/img/logo-front.png differ diff --git a/static/img/logo-lg.png b/static/img/logo-lg.png new file mode 100644 index 0000000..1e0e40d Binary files /dev/null and b/static/img/logo-lg.png differ diff --git a/static/img/logo-lg.svg b/static/img/logo-lg.svg new file mode 100644 index 0000000..d454ce8 --- /dev/null +++ b/static/img/logo-lg.svg @@ -0,0 +1,5580 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/img/logo-light.png b/static/img/logo-light.png new file mode 100644 index 0000000..d018f2d Binary files /dev/null and b/static/img/logo-light.png differ diff --git a/static/img/logo-sm.png b/static/img/logo-sm.png new file mode 100644 index 0000000..54f07ef Binary files /dev/null and b/static/img/logo-sm.png differ diff --git a/static/img/logo-sm.svg b/static/img/logo-sm.svg new file mode 100644 index 0000000..71a3509 --- /dev/null +++ b/static/img/logo-sm.svg @@ -0,0 +1,5607 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/img/logo.ico b/static/img/logo.ico new file mode 100644 index 0000000..d736cdf Binary files /dev/null and b/static/img/logo.ico differ diff --git a/static/img/logo.png b/static/img/logo.png new file mode 100644 index 0000000..d018f2d Binary files /dev/null and b/static/img/logo.png differ diff --git a/static/img/of-course-i-didnt-know-why-didnt-you-tell-me.gif b/static/img/of-course-i-didnt-know-why-didnt-you-tell-me.gif new file mode 100755 index 0000000..dd017da Binary files /dev/null and b/static/img/of-course-i-didnt-know-why-didnt-you-tell-me.gif differ diff --git a/static/img/palpable.jpg b/static/img/palpable.jpg new file mode 100755 index 0000000..84fce41 Binary files /dev/null and b/static/img/palpable.jpg differ diff --git a/static/img/relational_map.png b/static/img/relational_map.png new file mode 100755 index 0000000..7c2be78 Binary files /dev/null and b/static/img/relational_map.png differ diff --git a/static/img/site.webmanifest b/static/img/site.webmanifest new file mode 100644 index 0000000..45dc8a2 --- /dev/null +++ b/static/img/site.webmanifest @@ -0,0 +1 @@ +{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"} \ No newline at end of file diff --git a/static/img/something.png b/static/img/something.png new file mode 100755 index 0000000..76e0f9b Binary files /dev/null and b/static/img/something.png differ diff --git a/static/img/standard-dump-truck-sizes.png b/static/img/standard-dump-truck-sizes.png new file mode 100755 index 0000000..99aa812 Binary files /dev/null and b/static/img/standard-dump-truck-sizes.png differ diff --git a/static/img/von-mises.jpg b/static/img/von-mises.jpg new file mode 100755 index 0000000..3091354 Binary files /dev/null and b/static/img/von-mises.jpg differ -- cgit v1.2.3 From 8c72811789f2d71c2b7863afb961fcdcd7898c47 Mon Sep 17 00:00:00 2001 From: anoduck <9925396+anoduck@users.noreply.github.com> Date: Fri, 7 Mar 2025 20:30:09 -0500 Subject: Created News and Docs folders --- .frontmatter/config/content/pagefolders/news.json | 11 ++ .../config/content/snippets/accordian.json | 72 ++++++++ .frontmatter/config/content/snippets/image.json | 2 +- .../config/taxonomy/contenttypes/index.json | 17 +- .../config/taxonomy/contenttypes/news.json | 69 +++++++ .../config/taxonomy/contenttypes/post.json | 31 +--- Attic/index.md | 25 +++ config/_default/hugo.toml | 16 +- config/_default/languages.toml | 4 +- config/_default/menus/menus.en.toml | 10 + config/_default/params.toml | 44 ++++- content/_index.md | 2 +- content/communication/gbi.md | 44 +++++ content/docs/_index.md | 7 + .../count-from-notification-of-all-parties.md | 24 --- content/evidence/countup.md | 33 ++++ content/evidence/law-enforcement.md | 3 +- content/fpnav/index.md | 20 -- content/news/_index.md | 7 + content/news/doug-departs-for-work-at-1021am.md | 36 ++++ content/news/simmons-tyler-relocation.md | 39 ++++ content/posts/doug-departs-for-work-at-1021am.md | 36 ---- content/posts/roads.md | 35 ++++ content/posts/simmons-tyler-relocation.md | 39 ---- content/tips.md | 3 +- frontmatter.json | 8 +- go.mod | 3 +- go.sum | 4 + hugo_stats.json | 43 ++--- layouts/_default/single.html | 4 +- layouts/partials/disqus.html | 24 --- package-lock.json | 202 ++++++++++----------- package.json | 2 +- 33 files changed, 582 insertions(+), 337 deletions(-) create mode 100644 .frontmatter/config/content/pagefolders/news.json create mode 100644 .frontmatter/config/content/snippets/accordian.json create mode 100644 .frontmatter/config/taxonomy/contenttypes/news.json create mode 100644 Attic/index.md create mode 100644 content/communication/gbi.md create mode 100644 content/docs/_index.md delete mode 100644 content/evidence/count-from-notification-of-all-parties.md create mode 100644 content/evidence/countup.md create mode 100644 content/news/_index.md create mode 100644 content/news/doug-departs-for-work-at-1021am.md create mode 100644 content/news/simmons-tyler-relocation.md delete mode 100644 content/posts/doug-departs-for-work-at-1021am.md create mode 100644 content/posts/roads.md delete mode 100644 content/posts/simmons-tyler-relocation.md delete mode 100644 layouts/partials/disqus.html diff --git a/.frontmatter/config/content/pagefolders/news.json b/.frontmatter/config/content/pagefolders/news.json new file mode 100644 index 0000000..7c46a7f --- /dev/null +++ b/.frontmatter/config/content/pagefolders/news.json @@ -0,0 +1,11 @@ +{ + "$schema": "https://frontmatter.codes/config/content.pagefolders.schema.json", + "title": "news", + "path": "[[workspace]]/content/news", + "filePrefix": null, + "previewPath": "news", + "contentTypes": [ + "news", + "index" + ] +} \ No newline at end of file diff --git a/.frontmatter/config/content/snippets/accordian.json b/.frontmatter/config/content/snippets/accordian.json new file mode 100644 index 0000000..84e6d73 --- /dev/null +++ b/.frontmatter/config/content/snippets/accordian.json @@ -0,0 +1,72 @@ +{ + "$schema": "https://frontmatter.codes/config/content.snippets.schema.json", + "title": "Accordion", + "description": "Accordion Element", + "body": [ + "{{< accordion id=[[id]] >}}", + "{{< accordion-item header=[[header1]] show=true >}}", + "[[content1]]", + "{{< /accordion-item >}}", + "{{< accordion-item header=[[header2]] >}}", + "[[content2]]", + "{{< /accordion-item >}}", + "{{< accordion-item header=[[header3]] >}}", + "[[content3]]", + "{{< /accordion-item >}}", + "{{< /accordion >}}" + ], + "isMediaSnippet": false, + "openingTags": "[[", + "closingTags": "]]", + "fields": [ + { + "title": "Tag Id", + "name": "id", + "type": "string", + "single": true, + "default": "" + }, + { + "title": "Header 1", + "name": "header1", + "type": "string", + "single": true, + "default": "" + }, + { + "title": "Header 2", + "name": "header2", + "type": "string", + "single": true, + "default": "" + }, + { + "title": "Header 3", + "name": "header3", + "type": "string", + "single": true, + "default": "" + }, + { + "title": "Content 1", + "name": "content1", + "type": "string", + "single": true, + "default": "" + }, + { + "title": "Content 2", + "name": "content2", + "type": "string", + "single": true, + "default": "" + }, + { + "title": "Content 3", + "name": "content3", + "type": "string", + "single": true, + "default": "" + } + ] +} \ No newline at end of file diff --git a/.frontmatter/config/content/snippets/image.json b/.frontmatter/config/content/snippets/image.json index 7e9db4f..fb2e6fe 100644 --- a/.frontmatter/config/content/snippets/image.json +++ b/.frontmatter/config/content/snippets/image.json @@ -33,5 +33,5 @@ "default": "" } ], - "isMediaSnippet": true + "isMediaSnippet": false } \ No newline at end of file diff --git a/.frontmatter/config/taxonomy/contenttypes/index.json b/.frontmatter/config/taxonomy/contenttypes/index.json index 796682d..aafd066 100644 --- a/.frontmatter/config/taxonomy/contenttypes/index.json +++ b/.frontmatter/config/taxonomy/contenttypes/index.json @@ -8,18 +8,21 @@ "title": "Title", "name": "title", "type": "string", - "single": true + "single": true, + "default": "_index" }, { - "title": "Categories", - "name": "categories", + "title": "Type", + "name": "type", "type": "string", - "single": true + "single": true, + "default": "minimal" }, { - "title": "Thumbnail", - "name": "thumbnail", - "type": "string" + "title": "Description", + "name": "description", + "type": "string", + "single": false }, { "title": "Alias", diff --git a/.frontmatter/config/taxonomy/contenttypes/news.json b/.frontmatter/config/taxonomy/contenttypes/news.json new file mode 100644 index 0000000..ef79686 --- /dev/null +++ b/.frontmatter/config/taxonomy/contenttypes/news.json @@ -0,0 +1,69 @@ +{ + "$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json", + "name": "news", + "pageBundle": false, + "fields": [ + { + "title": "title", + "name": "title", + "type": "string" + }, + { + "title": "description", + "name": "description", + "type": "string" + }, + { + "title": "date", + "name": "date", + "type": "datetime" + }, + { + "title": "Type", + "name": "type", + "type": "choice", + "choices": [ + "default", + "docs", + "minimal" + ], + "default": "default" + }, + { + "title": "Categories", + "name": "categories", + "type": "string", + "single": true, + "default": "Post" + }, + { + "title": "tags", + "name": "tags", + "type": "tags" + }, + { + "title": "draft", + "name": "draft", + "type": "draft" + }, + { + "title": "Alias", + "name": "alias", + "type": "list" + }, + { + "title": "thumbnail", + "name": "thumbnail", + "type": "string", + "single": true, + "default": "/img/logo.png" + }, + { + "title": "FrontMatter Content Type", + "name": "fmContentType", + "type": "string", + "single": true, + "default": "news" + } + ] +} \ No newline at end of file diff --git a/.frontmatter/config/taxonomy/contenttypes/post.json b/.frontmatter/config/taxonomy/contenttypes/post.json index 4ce4d39..14a6b84 100644 --- a/.frontmatter/config/taxonomy/contenttypes/post.json +++ b/.frontmatter/config/taxonomy/contenttypes/post.json @@ -54,34 +54,9 @@ { "title": "thumbnail", "name": "thumbnail", - "type": "fields", - "fields": [ - { - "title": "url", - "name": "url", - "type": "string" - }, - { - "title": "author", - "name": "author", - "type": "string" - }, - { - "title": "authorURL", - "name": "authorURL", - "type": "string" - }, - { - "title": "origin", - "name": "origin", - "type": "string" - }, - { - "title": "originURL", - "name": "originURL", - "type": "string" - } - ] + "type": "string", + "single": true, + "default": "/img/logo.png" }, { "title": "FrontMatter Content Type", diff --git a/Attic/index.md b/Attic/index.md new file mode 100644 index 0000000..68ccfc8 --- /dev/null +++ b/Attic/index.md @@ -0,0 +1,25 @@ +--- +headless: true +title: Officials and individuals involved. +draft: false +--- +{{< fas fa-people-robbery spacing fa-8x >}}{{< fas fa-plus spacing fa-8x >}}{{< fas fa-person-through-window spacing fa-8x >}}{{< fas fa-plus spacing fa-8x >}}{{< fas fa-person-harassing spacing fa-8x >}}{{< fas fa-equals spacing fa-8x >}}{{< fas fa-house-crack spacing fa-8x >}} +{ .text-center .justify-content-center .d-none .d-lg-block } + +Doing their usual things... +{ .display-5 .text-center .justify-content-center } + + +{{< card align="center" icon="fas people-group" body="none" header="none" footer="none" button=true orientation="horizontal" style="" path="/persons/" >}} +In 2010, we returned home to care for ailing family members, the years that followed were unequivocally the hardest in our lives. We watched as our family slowly shrank in numbers before our eyes. It didn't take long until there was only one left and the place our family had called home for sixty years. + +Then in 2016, the same neighbor who had emptied all of our wells in the early 2000s, managed to railroad plans for a sixty acre solar power plant through approval near our family's farm. We did our research, learned all we could, and chose to oppose the construction. Our opposition was vocal and highly contested, but proponents of the project and county officials handled our opposition in another way. + +Rather than address the topic at hand, they choose to come after our family and home. At first it was mild acts of harassment, then it evolved into stalking, vandalization, and defamation. Then, when our neighbor disappeared and we discovered the property he owned across the street was up for sale, we suspected something was coming. What began was a systematic and coordinated county backed destruction of the neighborhood through illegal property development and destructive construction practices. Federal protective laws were disregarded, complaints ignored, and legal loopholes exploited. + +It was planned in advance with the aid of an attorney, it was an abuse of governmental power performed out of malicious spite, and it destroyed what little of our family we had left. It is Anathema. + +These are the people. +{{< /card >}} +{ .d-none .d-md-block } + \ No newline at end of file diff --git a/config/_default/hugo.toml b/config/_default/hugo.toml index 80ff47a..742cd54 100644 --- a/config/_default/hugo.toml +++ b/config/_default/hugo.toml @@ -1,5 +1,5 @@ title = "Corrupt Lamar" -copyright = "Copyright © 2024 Corrupt Lamar." +copyright = "Copyright © 2025 Corrupt Lamar." enableGitInfo = false # additional settings @@ -37,7 +37,7 @@ home = ["HTML", "RSS", "REDIR"] disabled = false simple = true - [privacy.twitter] + [privacy.x] disabled = false enableDNT = true simple = true @@ -53,7 +53,7 @@ home = ["HTML", "RSS", "REDIR"] [services] [services.instagram] disableInlineCSS = true - [services.twitter] + [services.x] disableInlineCSS = true [services.googleAnalytics] ID ="G-QZ7FLNSTXT" @@ -78,7 +78,7 @@ home = ["HTML", "RSS", "REDIR"] keepWhitespace = true [module] - replacements = "github.com/anoduck/mod-popup --> ../../mod-popup" +# replacements = "github.com/anoduck/mod-popup --> ../../mod-popup" [module.hugoVersion] extended = true min = "0.134.0" @@ -102,9 +102,11 @@ home = ["HTML", "RSS", "REDIR"] excludeFiles = "emails/*" source = "static" target = "static" - [[module.mounts]] - source = "netlify.toml" - target = "assets/config/netlify.toml" + # [[module.mounts]] + # source = "netlify.toml" + # target = "assets/config/netlify.toml" + [[module.imports]] + path = "github.com/gethinode/mod-cookieyes" [[module.imports]] path = "github.com/gethinode/hinode" [[module.imports]] diff --git a/config/_default/languages.toml b/config/_default/languages.toml index 5f18c96..2f7d74f 100644 --- a/config/_default/languages.toml +++ b/config/_default/languages.toml @@ -3,9 +3,9 @@ contentDir = "content" weight = 1 [en.params.head] - tagline = "The evidence surrounding the loss of our home." + tagline = "How a group of individuals persecuted our family and violated the law in order to run out of the county, and the county out of millions." [en.params.social] title = "Follow us on X" caption = "Show your support." - [en.params.footer] + # [en.params.footer] # license = "Licensed under Creative Commons (CC BY-NC-SA 4.0)." diff --git a/config/_default/menus/menus.en.toml b/config/_default/menus/menus.en.toml index f95036a..010c6ad 100644 --- a/config/_default/menus/menus.en.toml +++ b/config/_default/menus/menus.en.toml @@ -7,6 +7,11 @@ pageRef = "/tips/" weight = 10 +[[main]] + name = "Info" + pageRef = "/docs/" + weight = 15 + [[main]] name = "Evidence" pageRef = "/evidence/" @@ -28,6 +33,11 @@ pageRef = "/communication" weight = 50 +[[main]] + name = "News" + pageRef = "/news/" + weight = 55 + [[main]] name = "Posts" pageRef = "/posts/" diff --git a/config/_default/params.toml b/config/_default/params.toml index 1ef9adc..08e7156 100644 --- a/config/_default/params.toml +++ b/config/_default/params.toml @@ -1,6 +1,6 @@ [main] separator = "-" - description = "The evidence surrounding the loss of our home." + description = "How a group of individuals persecuted our family and violated the law in order to run out of the county, and the county out of millions." enableDarkMode = true enableLanguageSelectionStorage = false modes = ["light", "dark"] @@ -30,7 +30,7 @@ checkVersion = false [home] - sections = [ "reasons", "fpnav", "evidence", "legal", "communication", "posts" ] + sections = [ "reasons", "fpnav", "docs", "evidence", "legal", "communication", "posts", "news" ] fullCover = true centerHeadline = true style = "gradient-featured" @@ -106,8 +106,25 @@ # toml-docs-start sections # This determines the layout format for each secton of the site. [sections] + [sections.docs] + title = "Docs" + reference = "Documentation" + layout = "card" + sort = "date" + reverse = true + nested = true + cols = 3 + background = "" + color = "" + padding = "0" + header = "full" + footer = "none" + orientation = "stacked" + style = "border-0 card-zoom" + homepage = 3 + separator = true [sections.evidence] - title = "Evidence and Records" + title = "Evidence" reference = "More Evidence" layout = "card" sort = "date" @@ -124,7 +141,7 @@ homepage = 3 separator = true [sections.posts] - title = "News and Commentary" + title = "Posts" reference = "More Posts" layout = "card" sort = "date" @@ -179,7 +196,7 @@ # homepage = 3 # separator = true [sections.legal] - title = "Legal Sources and Topics" + title = "Legal" reference = "More On Legal" layout = "card" sort = "title" @@ -212,6 +229,23 @@ style = "border-0 card-zoom" homepage = 3 separator = true + [sections.news] + title = "News" + reference = "Recent News" + layout = "card" + sort = "date" + reverse = true + nested = true + cols = 3 + background = "" + color = "" + padding = "0" + header = "full" + footer = "none" + orientation = "stacked" + style = "border-0 card-zoom" + homepage = 3 + separator = true [sections.reasons] title = "Reasons why it matters to you:" layout = "list" diff --git a/content/_index.md b/content/_index.md index d3bf6a5..b92ab07 100644 --- a/content/_index.md +++ b/content/_index.md @@ -1,6 +1,6 @@ --- title: Corrupt Lamar -description: "The effort to document the evidence surrounding the attack on our family and the loss of our home." +description: "How a group of individuals persecuted our family and violated the law in order to run out of the county, and the county out of millions." thumbnail: url: img/logo-lg.png actions: diff --git a/content/communication/gbi.md b/content/communication/gbi.md new file mode 100644 index 0000000..59fbe87 --- /dev/null +++ b/content/communication/gbi.md @@ -0,0 +1,44 @@ +--- +title: Georgia Bureau of Investigation +description: Contact was made with the Georgia Bureau of Investigations. +date: 2025-03-05T20:52:00.000Z +metadata: full +categories: Communication +tags: + - GBI + - Law Enforcement + - communication +thumbnail: https://res.cloudinary.com/solardump/image/upload/v1741246915/Communication/GBI.jpg +type: docs +draft: false +alias: [] +modules: "" +fmContentType: communication +--- + +There is very little else that can be said, than one does what one can. Law Enforcement, if performed dutifully, exists +in a constant state of activity, with an overloaded work schedule, and an understaffed office. The need always remaining +greater than the supply. On the grand scale of offenses and with all the problems in this world, what was done to us is +small by comparison, especially considering the times we live in. It is for this reason we stand little chance of +recieving any formal form of justice. There is just simply too much else going on, regardless of how wrong what was done +to us was. + +It goes without saying, the overloaded judicial system was something our persecutors knew about and depended on to grant +assurance they would never face accountability. In fact, one of the supporting facts which points to the involvement of +a corrupt attorney, was how our persecutors manipulated and convoluted the legal system to their favor. Using their +own ties to local law enforcement to act as muscle in order exert control over us, and then walk away unscathed. Leaving +local law enforcement and us furious with each other over the scuffle. It is a tactic that has left our relationship +with local law enforcement in taters, each saying and doing things to each other we live to regret. + +Previously, we had contacted the Federal Bureau of Investigations regarding what we view as obvious acts of local +government corruptions and violations of federal law, what we recieved was the cold stale hand of bureaucracy. Calling +the state Bureau of Investigations was a different experience, as we were treated like human beings. Truthfully, it +caught us off guard, as we have become accustomed to being given the cold shoulder and the swift kick in the pants to +push us out the door. It would have provided us with some sense of future hope in accountability if the result was not +the same as it has always been before. As polite, nice, and cordial as the experience was, the need is simply greater +than the supply of resources available, and there is nothing they can do. + +As no criticism of their effort, this does present all of us with a paradox. What to do with an corrupt entity which has the +ability to shed all accountability? Who literally can destroy all that you inhabitate, can stalk your family members, +force you to pay more than your legal share of taxes, and imprison you for not being obedient to their tyrannical +mandates? I don't even know if Ghandi could answer such a question. \ No newline at end of file diff --git a/content/docs/_index.md b/content/docs/_index.md new file mode 100644 index 0000000..08cfa7d --- /dev/null +++ b/content/docs/_index.md @@ -0,0 +1,7 @@ +--- +title: Docs +type: minimal +description: About our struggle. +alias: [] +fmContentType: index +--- diff --git a/content/evidence/count-from-notification-of-all-parties.md b/content/evidence/count-from-notification-of-all-parties.md deleted file mode 100644 index b592b3f..0000000 --- a/content/evidence/count-from-notification-of-all-parties.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: When we notified all parties -description: How much time has passed since we notified all parties of our website. -date: 2025-01-29T13:08:29.312Z -metadata: full -categories: Evidence -tags: - - county officials - - notices - - timer -thumbnail: https://res.cloudinary.com/solardump/image/upload/v1738157217/evidence/photo-1513544705284-99373737fab6.jpg -type: docs -draft: false -alias: [] -modules: countup -fmContentType: evidence ---- - - -We want to report county authorities have known about our website since febuary the twenty fifth, twenty twenty four. - -We have not recieved one request for information takedown, nor a request for correction of the information published here. We have not recieved a solitary letter informing us of pending legal action out of defamation. This alone supports our claim to fortelling the truth of the events that took place. - -{{< countup fromdate="2024-03-25 18:23:00" timezone="EST" label="Time since parties involved were notified about our site:">}} \ No newline at end of file diff --git a/content/evidence/countup.md b/content/evidence/countup.md new file mode 100644 index 0000000..5d35332 --- /dev/null +++ b/content/evidence/countup.md @@ -0,0 +1,33 @@ +--- +title: Count from Notification +description: How much time has passed since we notified all parties of our website. +date: 2025-01-29T13:08:29.312Z +metadata: full +categories: Evidence +tags: + - county officials + - notices + - timer +thumbnail: https://res.cloudinary.com/solardump/image/upload/v1738157217/evidence/photo-1513544705284-99373737fab6.jpg +type: docs +draft: false +alias: + - /evidence/count-from-notification-of-all-parties/ + - /evidence/countup/ + - /evidence/when-we-notified-all-parties/ +modules: countup +fmContentType: evidence +--- + + +{{< countup fromdate="2024-03-25 18:23:00" timezone="EST" label="Time since parties involved were notified about our site:">}} + +We want to report county authorities have known about our website since Febuary 24th 2024. + +We have not recieved one request for information takedown, nor a request for correction of the information published +here. We have not recieved a solitary letter informing us of pending legal action out of defamation. This supports our +position. + +The continual position of the county has been to refuse all accountability, completely ignore us, and hope we will go +away. This is because they have something to hide, know they did wrong, and are trying to cover it up. We will not stop +until some facsimile of justice is performed. \ No newline at end of file diff --git a/content/evidence/law-enforcement.md b/content/evidence/law-enforcement.md index ebb1fe6..2bf3732 100644 --- a/content/evidence/law-enforcement.md +++ b/content/evidence/law-enforcement.md @@ -102,4 +102,5 @@ position of only being able to sell Doug the land. So, he cheats someone else ou ### Detainment -Info about detainment goes here. The link to [The Request for Case Dismissal](https://docs.corruptlamar.com/docket.pdf). \ No newline at end of file +Info about detainment goes here. The link to [The Request for Case +Dismissal](https://docs.corruptlamar.com/Docket_annotated.pdf). diff --git a/content/fpnav/index.md b/content/fpnav/index.md index 68ccfc8..4abb434 100644 --- a/content/fpnav/index.md +++ b/content/fpnav/index.md @@ -3,23 +3,3 @@ headless: true title: Officials and individuals involved. draft: false --- -{{< fas fa-people-robbery spacing fa-8x >}}{{< fas fa-plus spacing fa-8x >}}{{< fas fa-person-through-window spacing fa-8x >}}{{< fas fa-plus spacing fa-8x >}}{{< fas fa-person-harassing spacing fa-8x >}}{{< fas fa-equals spacing fa-8x >}}{{< fas fa-house-crack spacing fa-8x >}} -{ .text-center .justify-content-center .d-none .d-lg-block } - -Doing their usual things... -{ .display-5 .text-center .justify-content-center } - - -{{< card align="center" icon="fas people-group" body="none" header="none" footer="none" button=true orientation="horizontal" style="" path="/persons/" >}} -In 2010, we returned home to care for ailing family members, the years that followed were unequivocally the hardest in our lives. We watched as our family slowly shrank in numbers before our eyes. It didn't take long until there was only one left and the place our family had called home for sixty years. - -Then in 2016, the same neighbor who had emptied all of our wells in the early 2000s, managed to railroad plans for a sixty acre solar power plant through approval near our family's farm. We did our research, learned all we could, and chose to oppose the construction. Our opposition was vocal and highly contested, but proponents of the project and county officials handled our opposition in another way. - -Rather than address the topic at hand, they choose to come after our family and home. At first it was mild acts of harassment, then it evolved into stalking, vandalization, and defamation. Then, when our neighbor disappeared and we discovered the property he owned across the street was up for sale, we suspected something was coming. What began was a systematic and coordinated county backed destruction of the neighborhood through illegal property development and destructive construction practices. Federal protective laws were disregarded, complaints ignored, and legal loopholes exploited. - -It was planned in advance with the aid of an attorney, it was an abuse of governmental power performed out of malicious spite, and it destroyed what little of our family we had left. It is Anathema. - -These are the people. -{{< /card >}} -{ .d-none .d-md-block } - \ No newline at end of file diff --git a/content/news/_index.md b/content/news/_index.md new file mode 100644 index 0000000..ee349de --- /dev/null +++ b/content/news/_index.md @@ -0,0 +1,7 @@ +--- +title: News +type: minimal +description: Recent News on what is happening. +alias: [] +fmContentType: index +--- diff --git a/content/news/doug-departs-for-work-at-1021am.md b/content/news/doug-departs-for-work-at-1021am.md new file mode 100644 index 0000000..f3a7cce --- /dev/null +++ b/content/news/doug-departs-for-work-at-1021am.md @@ -0,0 +1,36 @@ +--- +title: Doug departs for work at 10:21AM +description: Record of events and discourse over a 10:21 am departure for work. +date: 2024-11-06T11:05:36.996Z +type: default +categories: Post +tags: + - chief_matthews + - doug + - Fire Chief + - stealing time +draft: false +alias: [] +thumbnail: + url: https://res.cloudinary.com/solardump/image/upload/v1730891389/posts/employee-time-theft.jpg + author: "" + authorURL: "" + origin: "" + originURL: "" +fmContentType: post +--- + +For nearly everyday for a month in 2023 logs were recorded as to when our Fire Chief left for and returned from work each day. Which resulted in a work schedule that when tallied appeared to be six hours a day for four days a week, which is a 24 hour work week. + +When security cameras were added to our property due to our property being vandalized and family members being stalked, what was recorded reinforced the previous observations. Although, concerned with this information we intentionally withheld addressing it at first out of fears it would make us appear biased and jaded. We have mentioned it before to all currently addressed parties, and seen no change. + +Today, we witnessed the same behavior, which has remained habitual, a 10:21am departure to work. Historically, this is followed by a 3:30pm-4:00pm return home. + +It is needless to say that any other employer would have terminated the employment of an individual who expressed such characteristics. This is regardless of the other complaints made by myself and members of our family, such as the refusal to provide assistance in a time of crisis, abuse of public office to serve private interests, use of office to personally profit, use of county equipment for personal use, distributing financially beneficial favors to subordinates for political favors, and involvement in numerous affairs that pose an obvious conflict of interest to professional duties. + +So apparently, once employed by the county, not only do you not have to obey any laws or any of the ethical standards set as employment standards, but you don't even have to go in for a full day's worth of work. + +The fact still remains, what our family has referred to as home for over sixty years was destroyed in order to please Brian Abernathy while financially benefiting the Fire Chief and the Tylers. + +> [!NOTE] +> Once our sites are up to acceptable readiness we will be providing photographic evidence of our claims. \ No newline at end of file diff --git a/content/news/simmons-tyler-relocation.md b/content/news/simmons-tyler-relocation.md new file mode 100644 index 0000000..59d617f --- /dev/null +++ b/content/news/simmons-tyler-relocation.md @@ -0,0 +1,39 @@ +--- +title: Simmons/Tyler Relocation +description: Letter identifying attempt of Simmons family to runaway +date: 2024-10-26T08:51:25.019Z +type: default +categories: Post +tags: + - county officials + - Lamar County + - letters + - Erica Tyler +draft: false +thumbnail: + url: https://res.cloudinary.com/solardump/image/upload/v1729932473/posts/KIMG5047.jpg + author: Corrupt Lamar + authorURL: https://corruptlamar.com +fmContentType: post +--- + +Almost one year to the date of beginning the subdivision. Erica Tyler has placed her home on the market for sale. We suspected this would occur from the beginning since Erica and her family have not resided in any one location for a significant amount of time. This reinforces what we have been saying all along. Which is, our family and home are the intended target of a premeditated plan to benefit from ruining our home. + +The timing of this event is suspicious, and there is little doubt with research, it will be discovered this event coincides with some now expired statute of limitation. All of which reaffirms the existence and involvement of legal counsel who has violated the Georgia State Bar Code of Ethics. Attorneys have an legal obligation to uphold the laws of the state in order to practice law, they also must exhibit ethical standards of practice in order to remain a member of the bar [^1]. By abusing his position as county attorney, disregarding an obvious conflict of interests (which has been done before), and perverting the law in order to aid breaking of state law. Effectively robbing us of our future and any sense of justice. + +The county would have risked nothing by enforcing the law, but by refusing to do so, it has only compounded the injury and temporarily avoided accountability. The motivation behind the county's decision could only have been spiteful, as the county's reputation was severely harmed by it, and the only party who benefited were those guilty of breaking the law in fhe first place. Primarily, the Simmons / Tyler's family. + +The act of destroying someone's home without a truly justifiable necessity, then treating that individual, their family, and all of their belongings as if it was all disposable refuse is of the highest order of disrespect, and a truly reflects an absence of moral fiber. + +We are duty bound to correct this injustice, and have a moral obligation to inform the public of our experiences. The actions and behavior of the Tyler / Simmons family, makes up part of this experience. We have no control over their actions, and cannot be held responsible for their behavior. Their relocation does not change any of this, and further amplifies the severity of the harm they have done and increases our moral obligation to inform others of our experience. It is a necessity to protect other individuals who still possess good in them from experiencing the fate dealt to us. + +Wherever they relocate to, will undoubtedly be vulnerable to succumbing the same hand that was dealt our home, and as both rational and moral agents, we cannot allow that to happen. So, we will simply have to invest the effort into learning what neighborhood is being preyed upon next, and build an altruistic friendship with those in that community. This would allow the creation of a network of individuals based on protecting the homes of each other, and allow each the opportunity of sharing experiences and accumulated knowledge of our experiences. Which appears to be the best way forward for the community. + +{{< image src="https://res.cloudinary.com/solardump/image/upload/v1729932473/posts/KIMG5047.jpg" >}} + +This is the cement the Tylers poured in our ditch to block it up. One of the minor offenses, but still completely disrespectful. It was not called for. + +{{< image src="https://res.cloudinary.com/solardump/image/upload/v1729932473/posts/KIMG5048.jpg" >}} + + +[^1]: https://www.gabar.org/general-counsel/georgia-rules-of-professional-conduct \ No newline at end of file diff --git a/content/posts/doug-departs-for-work-at-1021am.md b/content/posts/doug-departs-for-work-at-1021am.md deleted file mode 100644 index f3a7cce..0000000 --- a/content/posts/doug-departs-for-work-at-1021am.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Doug departs for work at 10:21AM -description: Record of events and discourse over a 10:21 am departure for work. -date: 2024-11-06T11:05:36.996Z -type: default -categories: Post -tags: - - chief_matthews - - doug - - Fire Chief - - stealing time -draft: false -alias: [] -thumbnail: - url: https://res.cloudinary.com/solardump/image/upload/v1730891389/posts/employee-time-theft.jpg - author: "" - authorURL: "" - origin: "" - originURL: "" -fmContentType: post ---- - -For nearly everyday for a month in 2023 logs were recorded as to when our Fire Chief left for and returned from work each day. Which resulted in a work schedule that when tallied appeared to be six hours a day for four days a week, which is a 24 hour work week. - -When security cameras were added to our property due to our property being vandalized and family members being stalked, what was recorded reinforced the previous observations. Although, concerned with this information we intentionally withheld addressing it at first out of fears it would make us appear biased and jaded. We have mentioned it before to all currently addressed parties, and seen no change. - -Today, we witnessed the same behavior, which has remained habitual, a 10:21am departure to work. Historically, this is followed by a 3:30pm-4:00pm return home. - -It is needless to say that any other employer would have terminated the employment of an individual who expressed such characteristics. This is regardless of the other complaints made by myself and members of our family, such as the refusal to provide assistance in a time of crisis, abuse of public office to serve private interests, use of office to personally profit, use of county equipment for personal use, distributing financially beneficial favors to subordinates for political favors, and involvement in numerous affairs that pose an obvious conflict of interest to professional duties. - -So apparently, once employed by the county, not only do you not have to obey any laws or any of the ethical standards set as employment standards, but you don't even have to go in for a full day's worth of work. - -The fact still remains, what our family has referred to as home for over sixty years was destroyed in order to please Brian Abernathy while financially benefiting the Fire Chief and the Tylers. - -> [!NOTE] -> Once our sites are up to acceptable readiness we will be providing photographic evidence of our claims. \ No newline at end of file diff --git a/content/posts/roads.md b/content/posts/roads.md new file mode 100644 index 0000000..d915f32 --- /dev/null +++ b/content/posts/roads.md @@ -0,0 +1,35 @@ +--- +title: The Chain of private roads. +description: Why is there a system of private roads connecting all of their houses? +date: 2025-03-06T08:47:46.088Z +type: default +categories: Post +tags: + - private_road + - road + - suspicious +draft: false +alias: [] +thumbnail: https://res.cloudinary.com/solardump/image/upload/v1741252520/posts/photo-1741160164801-793fa280501f.jpg +fmContentType: post +--- + +There is something we have been suspicious of for well over a decade. Up until recently, we did not dare to mention it, +because there was never any indication of it being related to anything subversive, and it was always in our best +interests to safeguard the integrity of our position. The erection of the fourth house sitting on top of what was the +old McCollums' Bros junk yard, and with it the increased probability of our previous suspicions being real has changed +this. What we are referring to is the system of private roads that connect all of our persecutors together. + + +{{< image src="https://res.cloudinary.com/solardump/image/upload/v1741257460/posts/roads.png" ratio="" class="" wrapper="" >}} + + +The system of private roads almost stretches the entire length of our road, but covers a greater distance due to winding +in and out between the houses. As previously mentioned, within months of moving into the neighborhood, the first thing +the fire chief did was plow a private road through his neighbor's property connecting his house with the property +currently owned by the Erica Tyler, and as Mr. Simmons moved in to build his subdivision on top of the junkyard he added +a road to connect his home with Erica's. Furthermore, Abernathy has had roads connection his house with at least five +other homes on the road. Finally, with the addition of the easily travelable pipline, all of this creates a network of +maintained backroads that raises the suspicion as to why they are being used so often, and for what purpose? What is +being transported between these houses often enough to warrant their upkeep, especially considering the county road is +only a few hundred yards away, and paved? \ No newline at end of file diff --git a/content/posts/simmons-tyler-relocation.md b/content/posts/simmons-tyler-relocation.md deleted file mode 100644 index 59d617f..0000000 --- a/content/posts/simmons-tyler-relocation.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Simmons/Tyler Relocation -description: Letter identifying attempt of Simmons family to runaway -date: 2024-10-26T08:51:25.019Z -type: default -categories: Post -tags: - - county officials - - Lamar County - - letters - - Erica Tyler -draft: false -thumbnail: - url: https://res.cloudinary.com/solardump/image/upload/v1729932473/posts/KIMG5047.jpg - author: Corrupt Lamar - authorURL: https://corruptlamar.com -fmContentType: post ---- - -Almost one year to the date of beginning the subdivision. Erica Tyler has placed her home on the market for sale. We suspected this would occur from the beginning since Erica and her family have not resided in any one location for a significant amount of time. This reinforces what we have been saying all along. Which is, our family and home are the intended target of a premeditated plan to benefit from ruining our home. - -The timing of this event is suspicious, and there is little doubt with research, it will be discovered this event coincides with some now expired statute of limitation. All of which reaffirms the existence and involvement of legal counsel who has violated the Georgia State Bar Code of Ethics. Attorneys have an legal obligation to uphold the laws of the state in order to practice law, they also must exhibit ethical standards of practice in order to remain a member of the bar [^1]. By abusing his position as county attorney, disregarding an obvious conflict of interests (which has been done before), and perverting the law in order to aid breaking of state law. Effectively robbing us of our future and any sense of justice. - -The county would have risked nothing by enforcing the law, but by refusing to do so, it has only compounded the injury and temporarily avoided accountability. The motivation behind the county's decision could only have been spiteful, as the county's reputation was severely harmed by it, and the only party who benefited were those guilty of breaking the law in fhe first place. Primarily, the Simmons / Tyler's family. - -The act of destroying someone's home without a truly justifiable necessity, then treating that individual, their family, and all of their belongings as if it was all disposable refuse is of the highest order of disrespect, and a truly reflects an absence of moral fiber. - -We are duty bound to correct this injustice, and have a moral obligation to inform the public of our experiences. The actions and behavior of the Tyler / Simmons family, makes up part of this experience. We have no control over their actions, and cannot be held responsible for their behavior. Their relocation does not change any of this, and further amplifies the severity of the harm they have done and increases our moral obligation to inform others of our experience. It is a necessity to protect other individuals who still possess good in them from experiencing the fate dealt to us. - -Wherever they relocate to, will undoubtedly be vulnerable to succumbing the same hand that was dealt our home, and as both rational and moral agents, we cannot allow that to happen. So, we will simply have to invest the effort into learning what neighborhood is being preyed upon next, and build an altruistic friendship with those in that community. This would allow the creation of a network of individuals based on protecting the homes of each other, and allow each the opportunity of sharing experiences and accumulated knowledge of our experiences. Which appears to be the best way forward for the community. - -{{< image src="https://res.cloudinary.com/solardump/image/upload/v1729932473/posts/KIMG5047.jpg" >}} - -This is the cement the Tylers poured in our ditch to block it up. One of the minor offenses, but still completely disrespectful. It was not called for. - -{{< image src="https://res.cloudinary.com/solardump/image/upload/v1729932473/posts/KIMG5048.jpg" >}} - - -[^1]: https://www.gabar.org/general-counsel/georgia-rules-of-professional-conduct \ No newline at end of file diff --git a/content/tips.md b/content/tips.md index 41a15a8..4726119 100644 --- a/content/tips.md +++ b/content/tips.md @@ -36,6 +36,5 @@ If you have first-hand account of the above, you have two options. You can (1) c You will be forwarded to the contact site momentarily. {{< /toast >}} -## Comment Section -{{ disqus }} + diff --git a/frontmatter.json b/frontmatter.json index 99e7647..d0bd841 100644 --- a/frontmatter.json +++ b/frontmatter.json @@ -7,8 +7,12 @@ "frontMatter.templates.folder": ".frontmatter/templates/", "frontMatter.framework.id": "hugo", "frontMatter.git.enabled": true, - "frontMatter.git.requiresCommitMessage": ["develop"], - "frontMatter.git.disableOnBranches": ["main"], + "frontMatter.git.requiresCommitMessage": [ + "develop" + ], + "frontMatter.git.disableOnBranches": [ + "main" + ], "frontMatter.preview.host": "http://localhost:1313", "frontMatter.website.host": "https://corruptlamar.com", "frontMatter.dashboard.openOnStart": true diff --git a/go.mod b/go.mod index 793adcc..90dded5 100644 --- a/go.mod +++ b/go.mod @@ -7,10 +7,11 @@ require ( github.com/anoduck/mod-alwaysdark v0.1.3 // indirect github.com/anoduck/mod-countup v0.1.5 // indirect github.com/anoduck/mod-juxtapose v0.1.0 // indirect - github.com/anoduck/mod-popup v0.2.4 // indirect + github.com/anoduck/mod-popup v0.2.5 // indirect github.com/anoduck/mod-timelinejs v0.1.4 // indirect github.com/gethinode/hinode v0.29.3 // indirect github.com/gethinode/mod-bootstrap v1.3.2 // indirect + github.com/gethinode/mod-cookieyes v1.0.2 // indirect github.com/gethinode/mod-csp v1.0.7 // indirect github.com/gethinode/mod-flexsearch/v2 v2.1.0 // indirect github.com/gethinode/mod-fontawesome v1.10.1 // indirect diff --git a/go.sum b/go.sum index c11e0b5..dbc8c5d 100644 --- a/go.sum +++ b/go.sum @@ -28,6 +28,8 @@ github.com/anoduck/mod-popup v0.1.8 h1:SEBdafXpRIPbZUR8wLzGueTjoAM4Lyx7P7hf8oMQe github.com/anoduck/mod-popup v0.1.8/go.mod h1:h2N2QA3SokbQiaSPAcCJLpuQP1hhbUqCx8HhxHa6CUs= github.com/anoduck/mod-popup v0.2.4 h1:iHcKyo9RzDFtXv6UzzdtnMwywpi2oPH/fI7TvMuoic0= github.com/anoduck/mod-popup v0.2.4/go.mod h1:h2N2QA3SokbQiaSPAcCJLpuQP1hhbUqCx8HhxHa6CUs= +github.com/anoduck/mod-popup v0.2.5 h1:UuH4KHGjMihjGr9quMNO8wyyC51rOVWVG0MQYKL3gkw= +github.com/anoduck/mod-popup v0.2.5/go.mod h1:h2N2QA3SokbQiaSPAcCJLpuQP1hhbUqCx8HhxHa6CUs= github.com/anoduck/mod-timelinejs v0.0.44 h1:d2/ViY40y2pu2Ch8DaXvjWQk/mRp+INfpcdDIYjalUA= github.com/anoduck/mod-timelinejs v0.0.44/go.mod h1:INrJdV8hxu6/EumOoE0mn0SmPeQR7xMIQ/tWb6FKqtw= github.com/anoduck/mod-timelinejs v0.0.45 h1:Bo761LuuYvT0+7uwwE/pv2tlre/joUuK8AS2pf32y/g= @@ -70,6 +72,8 @@ github.com/gethinode/mod-bootstrap v1.3.1 h1:ZUX72St0WZ5tyXpEPBJlayX/dmCH3cGErzs github.com/gethinode/mod-bootstrap v1.3.1/go.mod h1:CL9IDot6nbXIWJYE/KxfsTdYYEJIGL17BXbAYPn+wVQ= github.com/gethinode/mod-bootstrap v1.3.2 h1:mf9Qgr+xHZeHjZGYFdurETfdEKKldB158fpjH0GoaNU= github.com/gethinode/mod-bootstrap v1.3.2/go.mod h1:CL9IDot6nbXIWJYE/KxfsTdYYEJIGL17BXbAYPn+wVQ= +github.com/gethinode/mod-cookieyes v1.0.2 h1:WL9sjpYKjkV+jRKIrm6H82UpthQjFksvKGptW6HD/QU= +github.com/gethinode/mod-cookieyes v1.0.2/go.mod h1:VrBUKm5apop6KIb+R8eRqvlf3AAPnv5aMajL0RorIjY= github.com/gethinode/mod-csp v1.0.4 h1:ChI+DMkkkCF5tKs+K9VSqdsXPS01/QANQiJ2LoJp10o= github.com/gethinode/mod-csp v1.0.4/go.mod h1:Nb22QMicoUHgZQUKP5TCgVrSI8K3KU7jLuLBShmotjg= github.com/gethinode/mod-csp v1.0.5 h1:Ypdzw26iQ9/4sAgHvwFY1mg/EMoLrcI2knvVmHq2Ffs= diff --git a/hugo_stats.json b/hugo_stats.json index a55116c..fbb66bc 100644 --- a/hugo_stats.json +++ b/hugo_stats.json @@ -70,7 +70,6 @@ "%!s()", "active", "align-items-center", - "align-items-end", "align-middle", "align-self-center", "anchor", @@ -115,8 +114,6 @@ "card", "card-body", "card-body-link", - "card-button", - "card-icon", "card-img-bg", "card-img-h100", "card-img-top", @@ -173,7 +170,6 @@ "data-table", "display-1", "display-4", - "display-5", "dropdown", "dropdown-divider-bg", "dropdown-item", @@ -184,7 +180,6 @@ "end-0", "fa", "fa-10x", - "fa-8x", "fa-angle-left", "fa-angle-right", "fa-angles-left", @@ -192,31 +187,21 @@ "fa-arrow-left", "fa-arrow-right", "fa-book-open", - "fa-chevron-right", "fa-circle-info", "fa-download", "fa-ellipsis", - "fa-equals", "fa-face-frown", "fa-facebook", - "fa-fluid", "fa-fw", - "fa-house-crack", "fa-link", "fa-linkedin", "fa-magnifying-glass", "fa-moon", - "fa-people-group", - "fa-people-robbery", - "fa-person-harassing", - "fa-person-through-window", - "fa-plus", "fa-share-nodes", "fa-sort", "fa-sun", "fa-triangle-exclamation", "fa-whatsapp", - "fa-wrapper", "fa-x-twitter", "fab", "fade", @@ -277,7 +262,6 @@ "mb-3", "mb-5", "mb-lg-5", - "mb-n4", "me-auto", "mermaid", "middle-bar", @@ -390,7 +374,6 @@ "sidebar-overflow", "slot-type", "small", - "spacing", "start-0", "start-50", "sticky-top", @@ -471,7 +454,6 @@ "childrens-privacy", "closing", "collecting-and-using-your-personal-data", - "comment-section", "communication", "communications", "consent", @@ -491,6 +473,7 @@ "diagram-legend", "disclosure-of-your-personal-data", "disqus_thread", + "docs", "documented-acts-of-harassment", "donnie-simmons", "douglas-randall-matthews", @@ -498,7 +481,7 @@ "ellipse69", "email-table-of-contents", "erica-tyler", - "evidence-and-records", + "evidence", "evidentiary-artifacts", "fa-face-frown", "fa-id-card", @@ -514,29 +497,30 @@ "fas-arrow-left", "fas-arrow-right", "fas-book-open", - "fas-chevron-right", "fas-circle-info", "fas-download", "fas-ellipsis", - "fas-equals", - "fas-house-crack", "fas-link", "fas-magnifying-glass", "fas-moon", - "fas-people-group", - "fas-people-robbery", - "fas-person-harassing", - "fas-person-through-window", - "fas-plus", "fas-share-nodes", "fas-sort", "fas-sun", "fas-triangle-exclamation", "fn:1", + "fn:2", + "fn:3", + "fn:4", + "fn:5", + "fn:6", "fnref1:1", "fnref2:1", "fnref:1", "fnref:2", + "fnref:3", + "fnref:4", + "fnref:5", + "fnref:6", "footer-file-collapse-1", "footer-file-collapse-2", "framework", @@ -558,10 +542,9 @@ "law-enforcement", "leaflet-map-0", "legal", - "legal-sources-and-topics", "legal-standing", "letter-one-of-two", - "letter-to-the-editor-of-the-barnesville-dispatchhttpsbarnesvilledispatchcomindex377htm", + "letter-to-the-editor-of-the-barnesville-dispatch", "letter-two-of-two", "letters-sent-to-representative-beth-camp", "line-descriptors", @@ -603,7 +586,7 @@ "navbar-mode", "navbar-mode-checkbox", "neighbors-stalking", - "news-and-commentary", + "news", "news-media", "non-attorney-communications", "notations-provided-by-lexis-nexis", diff --git a/layouts/_default/single.html b/layouts/_default/single.html index f14768d..4d15895 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -40,8 +40,6 @@ {{ end -}} -
- {{ partial "disqus.html" . }} -
+{{ template "_internal/disqus.html" . }} {{ end -}} \ No newline at end of file diff --git a/layouts/partials/disqus.html b/layouts/partials/disqus.html deleted file mode 100644 index 8caab7b..0000000 --- a/layouts/partials/disqus.html +++ /dev/null @@ -1,24 +0,0 @@ -{{- $pc := .Site.Config.Privacy.Disqus -}} -{{- if not $pc.Disable -}} -{{ if .Site.Config.Services.Disqus.Shortname }}
- - -comments powered by Disqus{{end}} -{{- end -}} \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 1420d93..826b1ef 100644 --- a/package-lock.json +++ b/package-lock.json @@ -5,21 +5,21 @@ "requires": true, "packages": { "": { - "name": "@gethinode/template", - "version": "0.16.0", + "name": "@anoduck/hinode-template", + "version": "0.4.3", "license": "MIT", "dependencies": { "@fullhuman/postcss-purgecss": "^7.0.2", "autoprefixer": "^10.4.20", "cssnano": "^7.0.6", "cssnano-preset-advanced": "^7.0.6", - "hugo-bin": "0.140.1", + "hugo-bin": "0.142.0", "purgecss-whitelister": "^2.4.0" }, "devDependencies": { "@gethinode/netlify-plugin-dartsass": "^0.3.0", "@knight-lab/timelinejs": "^3.9.6", - "eslint": "^9.20.1", + "eslint": "^9.22.0", "markdownlint-cli2": "^0.17.2", "neostandard": "^0.12.1", "netlify-plugin-hugo-cache-resources": "^0.2.1", @@ -27,7 +27,7 @@ "postcss-cli": "^11.0.0", "rexreplace": "^7.1.12", "rimraf": "^6.0.1", - "stylelint": "^16.14.1", + "stylelint": "^16.15.0", "stylelint-config-standard-scss": "^14.0.0" }, "optionalDependencies": { @@ -171,12 +171,12 @@ } }, "node_modules/@eslint/config-array": { - "version": "0.19.1", - "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.19.1.tgz", - "integrity": "sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==", + "version": "0.19.2", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.19.2.tgz", + "integrity": "sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==", "dev": true, "dependencies": { - "@eslint/object-schema": "^2.1.5", + "@eslint/object-schema": "^2.1.6", "debug": "^4.3.1", "minimatch": "^3.1.2" }, @@ -184,10 +184,19 @@ "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, + "node_modules/@eslint/config-helpers": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.1.0.tgz", + "integrity": "sha512-kLrdPDJE1ckPo94kmPPf9Hfd0DU0Jw6oKYrhe+pwSC0iTUInmTa+w6fw8sGgcfkFJGNdWOUeOaDM4quW4a7OkA==", + "dev": true, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, "node_modules/@eslint/core": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.10.0.tgz", - "integrity": "sha512-gFHJ+xBOo4G3WRlR1e/3G8A6/KZAH6zcE/hkLRCZTi/B9avAG365QhFA8uOGzTMqgTghpn7/fSnscW++dpMSAw==", + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.12.0.tgz", + "integrity": "sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg==", "dev": true, "dependencies": { "@types/json-schema": "^7.0.15" @@ -197,9 +206,9 @@ } }, "node_modules/@eslint/eslintrc": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.2.0.tgz", - "integrity": "sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.0.tgz", + "integrity": "sha512-yaVPAiNAalnCZedKLdR21GOGILMLKPyqSLWaAjQFvYA2i/ciDi8ArYVr69Anohb6cH2Ukhqti4aFnYyPm8wdwQ==", "dev": true, "dependencies": { "ajv": "^6.12.4", @@ -220,30 +229,30 @@ } }, "node_modules/@eslint/js": { - "version": "9.20.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.20.0.tgz", - "integrity": "sha512-iZA07H9io9Wn836aVTytRaNqh00Sad+EamwOVJT12GTLw1VGMFV/4JaME+JjLtr9fiGaoWgYnS54wrfWsSs4oQ==", + "version": "9.22.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.22.0.tgz", + "integrity": "sha512-vLFajx9o8d1/oL2ZkpMYbkLv8nDB6yaIwFNt7nI4+I80U/z03SxmfOMsLbvWr3p7C+Wnoh//aOu2pQW8cS0HCQ==", "dev": true, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, "node_modules/@eslint/object-schema": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.5.tgz", - "integrity": "sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==", + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.6.tgz", + "integrity": "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==", "dev": true, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, "node_modules/@eslint/plugin-kit": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.5.tgz", - "integrity": "sha512-lB05FkqEdUg2AA0xEbUz0SnkXT1LcCTa438W4IWTUh4hdOnVbQyOJ81OrDXsJk/LSiJHubgGEFoR5EHq1NsH1A==", + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.7.tgz", + "integrity": "sha512-JubJ5B2pJ4k4yGxaNLdbjrnk9d/iDz6/q8wOilpIowd6PJPgaxCuHBnBszq7Ce2TyMrywm5r4PnKm6V3iiZF+g==", "dev": true, "dependencies": { - "@eslint/core": "^0.10.0", + "@eslint/core": "^0.12.0", "levn": "^0.4.1" }, "engines": { @@ -326,9 +335,9 @@ } }, "node_modules/@humanwhocodes/retry": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.1.tgz", - "integrity": "sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==", + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.2.tgz", + "integrity": "sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==", "dev": true, "engines": { "node": ">=18.18" @@ -428,9 +437,9 @@ } }, "node_modules/@keyv/serialize": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@keyv/serialize/-/serialize-1.0.2.tgz", - "integrity": "sha512-+E/LyaAeuABniD/RvUezWVXKpeuvwLEA9//nE9952zBaOdBd2mQ3pPoM8cUe2X6IcMByfuSLzmYqnYshG60+HQ==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@keyv/serialize/-/serialize-1.0.3.tgz", + "integrity": "sha512-qnEovoOp5Np2JDGonIDL6Ayihw0RhnRh6vxPuHo4RDn1UOzwEo4AeIfpL6UGIrsceWrCMiVPgwRjbHu4vYFc3g==", "dev": true, "dependencies": { "buffer": "^6.0.3" @@ -1444,13 +1453,13 @@ } }, "node_modules/cacheable": { - "version": "1.8.7", - "resolved": "https://registry.npmjs.org/cacheable/-/cacheable-1.8.7.tgz", - "integrity": "sha512-AbfG7dAuYNjYxFUtL1lAqmlWdxczCJ47w7cFjhGcnGnUdwSo6VgmSojfoW3tUI12HUkgTJ5kqj78yyq6TsFtlg==", + "version": "1.8.9", + "resolved": "https://registry.npmjs.org/cacheable/-/cacheable-1.8.9.tgz", + "integrity": "sha512-FicwAUyWnrtnd4QqYAoRlNs44/a1jTL7XDKqm5gJ90wz1DQPlC7U2Rd1Tydpv+E7WAr4sQHuw8Q8M3nZMAyecQ==", "dev": true, "dependencies": { - "hookified": "^1.6.0", - "keyv": "^5.2.3" + "hookified": "^1.7.1", + "keyv": "^5.3.1" } }, "node_modules/cacheable-lookup": { @@ -1479,12 +1488,12 @@ } }, "node_modules/cacheable/node_modules/keyv": { - "version": "5.2.3", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-5.2.3.tgz", - "integrity": "sha512-AGKecUfzrowabUv0bH1RIR5Vf7w+l4S3xtQAypKaUpTdIR1EbrAcTxHCrpo9Q+IWeUlFE2palRtgIQcgm+PQJw==", + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-5.3.1.tgz", + "integrity": "sha512-13hQT2q2VIwOoaJdJa7nY3J8UVbYtMTJFHnwm9LI+SaQRfUiM6Em9KZeOVTCKbMnGcRIL3NSUFpAdjZCq24nLQ==", "dev": true, "dependencies": { - "@keyv/serialize": "^1.0.2" + "@keyv/serialize": "^1.0.3" } }, "node_modules/call-bind": { @@ -2501,21 +2510,22 @@ } }, "node_modules/eslint": { - "version": "9.20.1", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.20.1.tgz", - "integrity": "sha512-m1mM33o6dBUjxl2qb6wv6nGNwCAsns1eKtaQ4l/NPHeTvhiUPbtdfMyktxN4B3fgHIgsYh1VT3V9txblpQHq+g==", + "version": "9.22.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.22.0.tgz", + "integrity": "sha512-9V/QURhsRN40xuHXWjV64yvrzMjcz7ZyNoF2jJFmy9j/SLk0u1OLSZgXi28MrXjymnjEGSR80WCdab3RGMDveQ==", "dev": true, "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.12.1", - "@eslint/config-array": "^0.19.0", - "@eslint/core": "^0.11.0", - "@eslint/eslintrc": "^3.2.0", - "@eslint/js": "9.20.0", - "@eslint/plugin-kit": "^0.2.5", + "@eslint/config-array": "^0.19.2", + "@eslint/config-helpers": "^0.1.0", + "@eslint/core": "^0.12.0", + "@eslint/eslintrc": "^3.3.0", + "@eslint/js": "9.22.0", + "@eslint/plugin-kit": "^0.2.7", "@humanfs/node": "^0.16.6", "@humanwhocodes/module-importer": "^1.0.1", - "@humanwhocodes/retry": "^0.4.1", + "@humanwhocodes/retry": "^0.4.2", "@types/estree": "^1.0.6", "@types/json-schema": "^7.0.15", "ajv": "^6.12.4", @@ -2523,7 +2533,7 @@ "cross-spawn": "^7.0.6", "debug": "^4.3.2", "escape-string-regexp": "^4.0.0", - "eslint-scope": "^8.2.0", + "eslint-scope": "^8.3.0", "eslint-visitor-keys": "^4.2.0", "espree": "^10.3.0", "esquery": "^1.5.0", @@ -2849,9 +2859,9 @@ } }, "node_modules/eslint-scope": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.2.0.tgz", - "integrity": "sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==", + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.3.0.tgz", + "integrity": "sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==", "dev": true, "dependencies": { "esrecurse": "^4.3.0", @@ -2876,18 +2886,6 @@ "url": "https://opencollective.com/eslint" } }, - "node_modules/eslint/node_modules/@eslint/core": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.11.0.tgz", - "integrity": "sha512-DWUB2pksgNEb6Bz2fggIy1wh6fGgZP4Xyy/Mt0QZPiloKKXerbqq9D3SBQTlCRYOrcRPu4vuz+CGjwdfqxnoWA==", - "dev": true, - "dependencies": { - "@types/json-schema": "^7.0.15" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - } - }, "node_modules/espree": { "version": "10.3.0", "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz", @@ -3214,9 +3212,9 @@ } }, "node_modules/flatted": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.2.tgz", - "integrity": "sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==", + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", + "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", "dev": true }, "node_modules/for-each": { @@ -3827,9 +3825,9 @@ } }, "node_modules/hookified": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/hookified/-/hookified-1.7.0.tgz", - "integrity": "sha512-XQdMjqC1AyeOzfs+17cnIk7Wdfu1hh2JtcyNfBf5u9jHrT3iZUlGHxLTntFBuk5lwkqJ6l3+daeQdHK5yByHVA==", + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/hookified/-/hookified-1.7.1.tgz", + "integrity": "sha512-OXcdHsXeOiD7OJ5zvWj8Oy/6RCdLwntAX+wUrfemNcMGn6sux4xbEHi2QXwqePYhjQ/yvxxq2MvCRirdlHscBw==", "dev": true }, "node_modules/hosted-git-info": { @@ -3868,9 +3866,9 @@ } }, "node_modules/hugo-bin": { - "version": "0.140.1", - "resolved": "https://registry.npmjs.org/hugo-bin/-/hugo-bin-0.140.1.tgz", - "integrity": "sha512-b8USeQg0GieW9oD4lpQJkqZ6cVMJenItSjLtiB6pWZhwdGOrnhQ+zDpXpxfrXcANZ6k2mKe92cnluoV61xH8uQ==", + "version": "0.142.0", + "resolved": "https://registry.npmjs.org/hugo-bin/-/hugo-bin-0.142.0.tgz", + "integrity": "sha512-i3ar9xmBbeMf0Q5tXrkCM3fARWN8BWV99tOq+b63C7EZd7a0aD5SOzDAWGi0pGxy583oKc/tS0VQSS3QWUI0fA==", "funding": [ { "type": "github", @@ -6195,9 +6193,9 @@ } }, "node_modules/postcss": { - "version": "8.5.1", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.1.tgz", - "integrity": "sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==", + "version": "8.5.3", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz", + "integrity": "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==", "funding": [ { "type": "opencollective", @@ -6212,7 +6210,6 @@ "url": "https://github.com/sponsors/ai" } ], - "license": "MIT", "dependencies": { "nanoid": "^3.3.8", "picocolors": "^1.1.1", @@ -7951,9 +7948,9 @@ } }, "node_modules/stylelint": { - "version": "16.14.1", - "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-16.14.1.tgz", - "integrity": "sha512-oqCL7AC3786oTax35T/nuLL8p2C3k/8rHKAooezrPGRvUX0wX+qqs5kMWh5YYT4PHQgVDobHT4tw55WgpYG6Sw==", + "version": "16.15.0", + "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-16.15.0.tgz", + "integrity": "sha512-OK6Rs7EPdcdmjqiDycadZY4fw3f5/TC1X6/tGjnF3OosbwCeNs7nG+79MCAtjEg7ckwqTJTsku08e0Rmaz5nUw==", "dev": true, "funding": [ { @@ -7965,7 +7962,6 @@ "url": "https://github.com/sponsors/stylelint" } ], - "license": "MIT", "dependencies": { "@csstools/css-parser-algorithms": "^3.0.4", "@csstools/css-tokenizer": "^3.0.3", @@ -7980,7 +7976,7 @@ "debug": "^4.3.7", "fast-glob": "^3.3.3", "fastest-levenshtein": "^1.0.16", - "file-entry-cache": "^10.0.5", + "file-entry-cache": "^10.0.6", "global-modules": "^2.0.0", "globby": "^11.1.0", "globjoin": "^0.1.4", @@ -7994,14 +7990,14 @@ "micromatch": "^4.0.8", "normalize-path": "^3.0.0", "picocolors": "^1.1.1", - "postcss": "^8.5.1", + "postcss": "^8.5.3", "postcss-resolve-nested-selector": "^0.1.6", "postcss-safe-parser": "^7.0.1", - "postcss-selector-parser": "^7.0.0", + "postcss-selector-parser": "^7.1.0", "postcss-value-parser": "^4.2.0", "resolve-from": "^5.0.0", "string-width": "^4.2.3", - "supports-hyperlinks": "^3.1.0", + "supports-hyperlinks": "^3.2.0", "svg-tags": "^1.0.0", "table": "^6.9.0", "write-file-atomic": "^5.0.1" @@ -8169,23 +8165,23 @@ "dev": true }, "node_modules/stylelint/node_modules/file-entry-cache": { - "version": "10.0.5", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-10.0.5.tgz", - "integrity": "sha512-umpQsJrBNsdMDgreSryMEXvJh66XeLtZUwA8Gj7rHGearGufUFv6rB/bcXRFsiGWw/VeSUgUofF4Rf2UKEOrTA==", + "version": "10.0.7", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-10.0.7.tgz", + "integrity": "sha512-txsf5fu3anp2ff3+gOJJzRImtrtm/oa9tYLN0iTuINZ++EyVR/nRrg2fKYwvG/pXDofcrvvb0scEbX3NyW/COw==", "dev": true, "dependencies": { - "flat-cache": "^6.1.5" + "flat-cache": "^6.1.7" } }, "node_modules/stylelint/node_modules/flat-cache": { - "version": "6.1.5", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-6.1.5.tgz", - "integrity": "sha512-QR+2kN38f8nMfiIQ1LHYjuDEmZNZVjxuxY+HufbS3BW0EX01Q5OnH7iduOYRutmgiXb797HAKcXUeXrvRjjgSQ==", + "version": "6.1.7", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-6.1.7.tgz", + "integrity": "sha512-qwZ4xf1v1m7Rc9XiORly31YaChvKt6oNVHuqqZcoED/7O+ToyNVGobKsIAopY9ODcWpEDKEBAbrSOCBHtNQvew==", "dev": true, "dependencies": { - "cacheable": "^1.8.7", - "flatted": "^3.3.2", - "hookified": "^1.6.0" + "cacheable": "^1.8.9", + "flatted": "^3.3.3", + "hookified": "^1.7.1" } }, "node_modules/stylelint/node_modules/globby": { @@ -8227,9 +8223,9 @@ } }, "node_modules/stylelint/node_modules/postcss-selector-parser": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", - "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz", + "integrity": "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==", "dev": true, "dependencies": { "cssesc": "^3.0.0", @@ -8270,9 +8266,9 @@ } }, "node_modules/supports-hyperlinks": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-3.1.0.tgz", - "integrity": "sha512-2rn0BZ+/f7puLOHZm1HOJfwBggfaHXUpPUSSG/SWM4TWp5KCfmNYwnC3hruy2rZlMnmWZ+QAGpZfchu3f3695A==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-3.2.0.tgz", + "integrity": "sha512-zFObLMyZeEwzAoKCyu1B91U79K2t7ApXuQfo8OuxwXLDgcKxuwM+YvcbIhm6QWqz7mHUH1TVytR1PwVVjEuMig==", "dev": true, "dependencies": { "has-flag": "^4.0.0", @@ -8282,7 +8278,7 @@ "node": ">=14.18" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/supports-hyperlinks?sponsor=1" } }, "node_modules/supports-preserve-symlinks-flag": { diff --git a/package.json b/package.json index 8989c17..7bc0498 100644 --- a/package.json +++ b/package.json @@ -49,7 +49,7 @@ "devDependencies": { "@gethinode/netlify-plugin-dartsass": "^0.3.0", "@knight-lab/timelinejs": "^3.9.6", - "eslint": "^9.21.0", + "eslint": "^9.22.0", "markdownlint-cli2": "^0.17.2", "neostandard": "^0.12.1", "netlify-plugin-hugo-cache-resources": "^0.2.1", -- cgit v1.2.3