diff options
23 files changed, 382 insertions, 33 deletions
diff --git a/.frontmatter/config/content/pagefolders/docs.json b/.frontmatter/config/content/pagefolders/docs.json index c31aefc..ffca871 100644 --- a/.frontmatter/config/content/pagefolders/docs.json +++ b/.frontmatter/config/content/pagefolders/docs.json @@ -6,6 +6,7 @@ "previewPath": "docs", "contentTypes": [ "docs", - "index" + "index", + "timelinejs" ] }
\ No newline at end of file diff --git a/.frontmatter/config/content/snippets/collapse.json b/.frontmatter/config/content/snippets/collapse.json new file mode 100644 index 0000000..d8dc15e --- /dev/null +++ b/.frontmatter/config/content/snippets/collapse.json @@ -0,0 +1,47 @@ +{ + "$schema": "https://frontmatter.codes/config/content.snippets.schema.json", + "title": "Collapse", + "description": "Collapsible Element", + "body": [ + "{{< button collapse=[[id]] >}}", + "[[label]]", + "{{< /button >}}", + "", + "{{< collapse id=[[id]] class=[[class]] >}}", + "[[content]]", + "{{< /collapse >}}" + ], + "isMediaSnippet": false, + "openingTags": "[[", + "closingTags": "]]", + "fields": [ + { + "title": "Tag Id", + "name": "id", + "type": "string", + "single": true, + "default": "" + }, + { + "title": "Button Label", + "name": "label", + "type": "string", + "single": false, + "default": "" + }, + { + "title": "Class", + "name": "class", + "type": "string", + "single": true, + "default": "p-3 border rounded" + }, + { + "title": "Content", + "name": "content", + "type": "string", + "single": false, + "default": "" + } + ] +}
\ No newline at end of file diff --git a/.frontmatter/config/data/files/bs-timeline.json b/.frontmatter/config/data/files/bs-timeline.json deleted file mode 100644 index 57ef409..0000000 --- a/.frontmatter/config/data/files/bs-timeline.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "$schema": "https://frontmatter.codes/config/data.files.schema.json", - "id": "bs-timeline", - "title": "bs-timeline", - "file": "[[workspace]]/data/bs-timeline.yml", - "labelField": "name", - "fileType": "yaml", - "singleEntry": false, - "type": "bs-timeline" -}
\ No newline at end of file diff --git a/.frontmatter/config/data/folders/timeline.json b/.frontmatter/config/data/folders/timeline.json new file mode 100644 index 0000000..7fd73c6 --- /dev/null +++ b/.frontmatter/config/data/folders/timeline.json @@ -0,0 +1,44 @@ +{ + "$schema": "https://frontmatter.codes/config/data.folders.schema.json", + "id": "timeline", + "path": "[[workspace]]/data", + "labelField": "name", + "singleEntry": false, + "enableFileCreation": true, + "fileType": "yaml", + "schema": { + "title": "Bootstrap Timeline", + "type": "object", + "required": [ + "name", + "date" + ], + "properties": { + "name": { + "type": "string", + "title": "Title" + }, + "date": { + "type": "string", + "title": "Date" + }, + "icon": { + "type": "string", + "title": "Icon" + }, + "color": { + "type": "string", + "title": "Color" + }, + "url": { + "type": "string", + "title": "URL" + }, + "content": { + "type": "string", + "title": "Content" + } + } + }, + "type": "timeline" +}
\ No newline at end of file diff --git a/.frontmatter/config/data/types/bs-timeline.json b/.frontmatter/config/data/types/timeline.json index 54a2ecc..54a2ecc 100644 --- a/.frontmatter/config/data/types/bs-timeline.json +++ b/.frontmatter/config/data/types/timeline.json diff --git a/.frontmatter/config/taxonomy/contenttypes/timelinejs.json b/.frontmatter/config/taxonomy/contenttypes/timelinejs.json new file mode 100644 index 0000000..c76bae1 --- /dev/null +++ b/.frontmatter/config/taxonomy/contenttypes/timelinejs.json @@ -0,0 +1,86 @@ +{ + "$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json", + "name": "timelinejs", + "pageBundle": true, + "previewPath": "docs/timeline", + "fields": [ + { + "title": "Title", + "name": "title", + "type": "string", + "single": true + }, + { + "title": "Description", + "name": "description", + "type": "string" + }, + { + "title": "date", + "name": "date", + "type": "datetime" + }, + { + "title": "Metadata", + "name": "metadata", + "type": "choice", + "choices": [ + "full", + "original", + "none" + ], + "default": "full" + }, + { + "title": "Categories", + "name": "categories", + "type": "string", + "single": true, + "default": "docs" + }, + { + "title": "Tags", + "name": "tags", + "type": "tags" + }, + { + "title": "Thumbnail", + "name": "thumbnail", + "type": "string", + "default": "https://loremflickr.com/420/360/corrupt/all?=random1" + }, + { + "title": "Type", + "name": "type", + "type": "choice", + "choices": [ + "default", + "docs", + "minimal" + ], + "default": "docs" + }, + { + "title": "Draft", + "name": "draft", + "type": "draft" + }, + { + "title": "Alias", + "name": "alias", + "type": "list" + }, + { + "title": "Modules", + "name": "modules", + "type": "string" + }, + { + "title": "FrontMatter Content Type", + "name": "fmContentType", + "type": "string", + "single": true, + "default": "docs" + } + ] +}
\ No newline at end of file diff --git a/config/_default/hugo.toml b/config/_default/hugo.toml index 3fd41c3..cb13dbe 100644 --- a/config/_default/hugo.toml +++ b/config/_default/hugo.toml @@ -116,4 +116,6 @@ home = ["HTML", "RSS", "REDIR"] [[module.imports]] path = "github.com/gethinode/mod-mermaid" [[module.imports]] - path = "github.com/gethinode/mod-leaflet"
\ No newline at end of file + path = "github.com/gethinode/mod-leaflet" + [[module.imports]] + path = "github.com/anoduck/mod-timelinejs3"
\ No newline at end of file diff --git a/config/_default/menus/menus.en.toml b/config/_default/menus/menus.en.toml index 9dfc23a..7c81733 100644 --- a/config/_default/menus/menus.en.toml +++ b/config/_default/menus/menus.en.toml @@ -216,4 +216,39 @@ name = "Twitter: @solar_dump" url = "https://twitter.com/solar_dump" parent = "Our Network" - weight = 40
\ No newline at end of file + weight = 40 + +# # External Links +# [[footer]] +# name = "Other Sites" +# weight = 40 + +# [[footer]] +# name = "Lamar County Code" +# url = "https://library.municode.com/ga/lamar_county/codes/code_of_ordinances" +# parent = "Other Sites" +# weight = 10 + +# [[footer]] +# name = "Lamar County Commissioners" +# url = "https://lamarcountyga.com" +# parent = "Other Sites" +# weight = 20 + +# [[footer]] +# name = "Lamar Co Online Tax Records" +# url = "https://qpublic.net/ga/lamar/" +# parent = "Other Sites" +# weight = 30 + +# [[footer]] +# name = "2023 Georgia Code" +# url = "https://law.justia.com/codes/georgia/2023/" +# parent = "Other Sites" +# weight = "40" + +# [[footer]] +# name = "2022 Federal Code" +# url = "https://law.justia.com/codes/us/2022/" +# parent = "Other Sites" +# weight = 50
\ No newline at end of file diff --git a/config/_default/params.toml b/config/_default/params.toml index 779559c..8df28e1 100644 --- a/config/_default/params.toml +++ b/config/_default/params.toml @@ -106,7 +106,7 @@ # This determines the layout format for each secton of the site. [sections] [sections.evidence] - title = "Evidenciary Artifacts" + title = "Evidence and Records" reference = "More Evidence" layout = "card" sort = "date" diff --git a/content/docs/_index.md b/content/docs/_index.md new file mode 100644 index 0000000..9547d7d --- /dev/null +++ b/content/docs/_index.md @@ -0,0 +1,7 @@ +--- +title: docs +categories: "" +thumbnail: "" +alias: [] +fmContentType: index +--- diff --git a/content/docs/timeline-test/index.md b/content/docs/timeline-test/index.md new file mode 100644 index 0000000..b789d38 --- /dev/null +++ b/content/docs/timeline-test/index.md @@ -0,0 +1,17 @@ +--- +title: Timeline Test +description: Test Page for Timelinejs +date: 2024-11-20T12:43:24.828Z +metadata: full +categories: docs +tags: [] +thumbnail: https://loremflickr.com/420/360/corrupt/all?=random1 +type: docs +draft: false +alias: [] +modules: timelinejs3 +fmContentType: timelinejs +--- + + +{{< timelinejs jsonFile="knightlabs.json" >}}
\ No newline at end of file diff --git a/content/evidence/otter-timeline.md b/content/evidence/otter-timeline.md index d9d891f..011aeed 100644 --- a/content/evidence/otter-timeline.md +++ b/content/evidence/otter-timeline.md @@ -51,12 +51,6 @@ This list will further be processed separating important events from the frivolo {{< table sortable="true" paging="true" searchable="true" >}} | speech_id | start | end |duration| content |created_at| links | |----------------|----------|----------|--------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------|--------------------------------------------------------------------------------------------------------| -|2277C6VNC7TYW65D|2019-05-06|2019-05-06| 3527 | promise, contract, economics, river, damages, question, penalty, sue, people, courts, money, liability, carver, accomplish, wrong, called, justice, environmental effects, efficiently, law |1557159156|[TpyzFJlM_47RI3nzFWQkVxXC_tE](https://docs.corruptlamar.com/otter-logs/TpyzFJlM_47RI3nzFWQkVxXC_tE.pdf)| -|2277C6VNN6ARWYNM|2019-05-23|2019-05-23| 1594 | verizon, plan, verizon wireless, XXXXzon, connection, high speed data, received, data, write, throttled, offer, update, suffered, gigabyte, manager, services, online, informed, pay, pathetic |1558594400|[hQfinGDzAxjM7CWJKzWXnIlgaCw](https://docs.corruptlamar.com/otter-logs/hQfinGDzAxjM7CWJKzWXnIlgaCw.pdf)| -|2277C6VNUIXSM7TD|2019-06-03|2019-06-03| 31 | penguins, duck, odd, weirdest thing, flew |1559555811|[Ybz0XagV0clife1nhVLj9vAOlLY](https://docs.corruptlamar.com/otter-logs/Ybz0XagV0clife1nhVLj9vAOlLY.pdf)| -|2277C6VOTRQQQLNZ|2019-07-20|2019-07-20| 368 | XXXXing, degree, entire semester, problem, hated, notes, situation, pissed, diesel, life, financial, giving, worse, hatred, school, shit, project, study, tiger, brand |1563655003|[rl1pHD8BDujgx0UVgD6PkTJngmw](https://docs.corruptlamar.com/otter-logs/rl1pHD8BDujgx0UVgD6PkTJngmw.pdf)| -|2277C6VP2F3NWBPJ|2019-07-30|2019-07-30| 43 | XXXX |1564520648|[Bd3HFIm4oX-oXbjEBe1EadzptM8](https://docs.corruptlamar.com/otter-logs/Bd3HFIm4oX-oXbjEBe1EadzptM8.pdf)| -|2277C6VPNRVBU2MJ|2019-08-29|2019-08-29| 57 | process, art, forming, expression, display, gardening, existence, fact |1567063428|[gDkMWrOaIwYNi6zXpcytDcp2zmc](https://docs.corruptlamar.com/otter-logs/gDkMWrOaIwYNi6zXpcytDcp2zmc.pdf)| |2277C6VQTPFSLNNE|2019-10-25|2019-10-25| 153 | banta, complete XXXXXXXX, woods, abernathy, rounds, hunting, army, left, starts, quote unquote, unexploded, feet, slopes, impacts, occurred, officer, projectile, fire, mistake, hurt |1572033951|[yhMC_z6O7oIhd_Q7I69rPU4Cy90](https://docs.corruptlamar.com/otter-logs/yhMC_z6O7oIhd_Q7I69rPU4Cy90.pdf)| |2277C6VRS27U47LJ|2019-12-10|2019-12-10| 105 | XXXXX, property, scratch, nilly, license, phrase, country, william, island, anger |1576010468|[xmk8ta_T7gHsOwuuGWQpyS9ItPQ](https://docs.corruptlamar.com/otter-logs/xmk8ta_T7gHsOwuuGWQpyS9ItPQ.pdf)| |2277C6VRS2CIVVQF|2019-12-10|2019-12-10| 993 | shooting, damages, legal, isolate, free, people, critters, work, legal ramifications, gentleman, interact, admitted, responsibility, atlanta, solar power plant, property, XXXXest, tort law, unlawful, rustling |1576010807|[Okx8ZEwkYgRBk3Fpbp56t8Hd5bE](https://docs.corruptlamar.com/otter-logs/Okx8ZEwkYgRBk3Fpbp56t8Hd5bE.pdf)| diff --git a/content/legal/faq.md b/content/legal/faq.md new file mode 100644 index 0000000..c27ae3b --- /dev/null +++ b/content/legal/faq.md @@ -0,0 +1,17 @@ +--- +title: FAQ +description: Frequently Asked Questions +date: 2024-11-20T20:19:14.739Z +tags: [] +categories: Legal +type: docs +draft: true +alias: [] +thumbnail: + url: "" + author: "" + authorURL: "" + origin: "" + originURL: "" +fmContentType: legal +--- diff --git a/content/legal/premeditation.md b/content/legal/premeditation.md new file mode 100644 index 0000000..1a61cb7 --- /dev/null +++ b/content/legal/premeditation.md @@ -0,0 +1,27 @@ +--- +title: Premeditation +description: Signs of premeditation +date: 2024-11-20T20:47:06.324Z +tags: [] +categories: Legal +type: docs +draft: true +alias: [] +thumbnail: + url: "" + author: "" + authorURL: "" + origin: "" + originURL: "" +fmContentType: legal +--- + +> No one bats 1,000, especially not these guys. + +### Analogy: Blind mouse finding cheese. + +We have all heard the analogy "Even a blind mouse will find a piece of cheese now and again." Now, imagine what would happen if every time the blind mouse went out to find a piece of cheese it was successful, __no matter what the circumstances were__. You would eventually come to the conclusion that either the mouse isn't blind at all, or there was something guiding him to the cheese. This analogy describes exactly how events have unfolded for us. The home burners not only knew what to do and how to do it, but they knew how to avoid being held accountable for doing it. It would be the same as if every time you and your friend went fishing, he would catch the biggest fish in the lake. Eventually, you would either discover he was a famously renowned angular, he was cheating somehow, or he was purchasing the biggest fish at the market and carrying it out on the lake with him. No one is that lucky on their own, someone had to sit back and plan it all through to guarantee success, and that person had to have been a lawyer. + +### No one bats 1000 + +What happened is really beyond the probabilities of coincidence, which is why the analogy of the blind mouse fails to fully express the statistical conditions involved in the situation. As for the mouse, it is a hit or miss scenario, for a better analogy one would need to look at the statistical fact that no baseball player could ever have a 1000 batting average. Major League baseball players, the exceptionally good ones,
\ No newline at end of file diff --git a/content/legal/zeitgeist.md b/content/legal/zeitgeist.md new file mode 100644 index 0000000..80f2e2a --- /dev/null +++ b/content/legal/zeitgeist.md @@ -0,0 +1,21 @@ +--- +title: ZeitGeist +description: "Legal Spirit of The Times." +date: null +tags: [] +categories: Legal +type: docs +draft: true +alias: [] +thumbnail: + url: "" + author: "" + authorURL: "" + origin: "" + originURL: "" +fmContentType: legal +--- + +One of the many reasons why being targeted was so brutal was because the home burners took advantage of the legal zeitgeist. Meaning, they took advantage of the "spirit of the times". + +The last four years have done more to destroy our legal system than any other point in the history of our country. This is not said with political bias, this is said with observation obtained before
\ No newline at end of file diff --git a/content/posts/what-can-we-do-about-it.md b/content/posts/what-can-we-do-about-it.md new file mode 100644 index 0000000..4e2a07c --- /dev/null +++ b/content/posts/what-can-we-do-about-it.md @@ -0,0 +1,25 @@ +--- +title: What can we do about it? +description: What can we do about having our home destroyed? +date: 2024-11-20T20:28:10.975Z +type: default +categories: Post +tags: [] +draft: true +alias: [] +thumbnail: + url: "" + author: "" + authorURL: "" + origin: "" + originURL: "" +fmContentType: post +--- + +## So now that county officials and locals conspired to destroy our home, what can we do about it? + +In short, quite a lot actually. + +### Legal action is not out of the question. + +No one bats
\ No newline at end of file diff --git a/content/reasons/lawfare-makes-a-mockery-of-our-legal-system.md b/content/reasons/lawfare-makes-a-mockery-of-our-legal-system.md new file mode 100644 index 0000000..14c87bf --- /dev/null +++ b/content/reasons/lawfare-makes-a-mockery-of-our-legal-system.md @@ -0,0 +1,19 @@ +--- +author: Corrupt Lamar +title: Lawfare makes a mockery of our legal system. +date: 2024-11-20T21:55:20.518Z +weight: 0 +thumbnail: /img/logo.svg +colormode: "false" +categories: Reason +draft: true +alias: [] +tilted: "true" +fmContentType: reason +--- + +Hinode supports {{< link hugo_modules >}}Hugo modules{{< /link >}} and mounted folders to create a modern, flexible build system. By taking advantage of {{< link npm >}}npm{{< /link >}} and {{< link github_actions >}}GitHub actions{{< /link >}}, you can ensure your deployed site is always up-to-date. + +{{< button relref="hosting-and-deployment" >}} + Check the deployment options +{{< /button >}}
\ No newline at end of file @@ -4,18 +4,18 @@ go 1.22.7 require ( github.com/airbnb/lottie-web v5.12.2+incompatible // indirect - github.com/anoduck/mod-timelinejs3 v0.0.14 // indirect - github.com/gethinode/hinode v0.27.8 // indirect + github.com/anoduck/mod-timelinejs3 v0.0.19 // indirect + github.com/gethinode/hinode v0.27.11 // indirect github.com/gethinode/mod-bootstrap v1.3.1 // indirect - github.com/gethinode/mod-csp v1.0.3 // indirect + github.com/gethinode/mod-csp v1.0.4 // indirect github.com/gethinode/mod-flexsearch/v2 v2.0.2 // indirect github.com/gethinode/mod-fontawesome v1.10.0 // indirect - github.com/gethinode/mod-google-analytics v1.1.3 // indirect + github.com/gethinode/mod-google-analytics v1.1.4 // indirect github.com/gethinode/mod-katex v1.1.2 // indirect github.com/gethinode/mod-leaflet v1.2.0 // indirect github.com/gethinode/mod-lottie v1.5.11 // indirect - github.com/gethinode/mod-mermaid v1.1.19 // indirect - github.com/gethinode/mod-simple-datatables v1.1.0 // indirect + github.com/gethinode/mod-mermaid v1.1.20 // indirect + github.com/gethinode/mod-simple-datatables v1.1.3 // indirect github.com/gethinode/mod-utils/v2 v2.8.3 // indirect github.com/nextapps-de/flexsearch v0.0.0-20240501124520-961c3ae84a87 // indirect github.com/twbs/bootstrap v5.3.3+incompatible // indirect @@ -24,18 +24,30 @@ github.com/anoduck/mod-timelinejs3 v0.0.13 h1:10Tk0jYQmQRzsTrvVF6RfNRoxwbqj2YvwV github.com/anoduck/mod-timelinejs3 v0.0.13/go.mod h1:1R4RTP4WFE9xJLvPRLaobXgfBoaPytOX8yZD5J4RkaE= github.com/anoduck/mod-timelinejs3 v0.0.14 h1:YNaN2SDPKkjUE0APldNvSRbF6VZEignr7wLZtW7tnm4= github.com/anoduck/mod-timelinejs3 v0.0.14/go.mod h1:1R4RTP4WFE9xJLvPRLaobXgfBoaPytOX8yZD5J4RkaE= +github.com/anoduck/mod-timelinejs3 v0.0.16 h1:iEQB6mWU0Y/fZVWPRtGDXabViYBcCLABf/kqYZg9XQg= +github.com/anoduck/mod-timelinejs3 v0.0.16/go.mod h1:1R4RTP4WFE9xJLvPRLaobXgfBoaPytOX8yZD5J4RkaE= +github.com/anoduck/mod-timelinejs3 v0.0.18 h1:CvdBYcaNcWetIQqyP22pMKBjSGbNxlWayZ1CC5Vgqdc= +github.com/anoduck/mod-timelinejs3 v0.0.18/go.mod h1:1R4RTP4WFE9xJLvPRLaobXgfBoaPytOX8yZD5J4RkaE= +github.com/anoduck/mod-timelinejs3 v0.0.19 h1:UsFyfcOll5hXQlQJIdoxJwDS12m7EvDlUNYJYU0sUYk= +github.com/anoduck/mod-timelinejs3 v0.0.19/go.mod h1:1R4RTP4WFE9xJLvPRLaobXgfBoaPytOX8yZD5J4RkaE= github.com/gethinode/hinode v0.27.8 h1:jB86d1VxZBYJ6jhqultRI5XmO4OwAzHSKSAAcsr3YJY= github.com/gethinode/hinode v0.27.8/go.mod h1:L9xLjrh/W2oqnycFB14dfHX8PNWpBlBNdOI+q5U9Ric= +github.com/gethinode/hinode v0.27.11 h1:Gcb89fpMHHRQlhyI6LEJ3W+rpoHnTqbHIWRFgZLDDmw= +github.com/gethinode/hinode v0.27.11/go.mod h1:LarPosM8kimSWI+gG6ARxmXpM+wXfT/s5K99ZrtFjwA= github.com/gethinode/mod-bootstrap v1.3.1 h1:ZUX72St0WZ5tyXpEPBJlayX/dmCH3cGErzsozkUKCok= github.com/gethinode/mod-bootstrap v1.3.1/go.mod h1:CL9IDot6nbXIWJYE/KxfsTdYYEJIGL17BXbAYPn+wVQ= github.com/gethinode/mod-csp v1.0.3 h1:tRmnuVZ3UpCc9HR8qsAwbU0OJ/UsNVSbse0SZuwGcCg= github.com/gethinode/mod-csp v1.0.3/go.mod h1:Nb22QMicoUHgZQUKP5TCgVrSI8K3KU7jLuLBShmotjg= +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-flexsearch/v2 v2.0.2 h1:5FkLbjORwKvK544H/yaAltyIB7eptRPxxh5VcfDDeqM= github.com/gethinode/mod-flexsearch/v2 v2.0.2/go.mod h1:d7MMkVlz0l6cEk76e0mkveEsDxGfu5Sv+HUIhoGguhE= github.com/gethinode/mod-fontawesome v1.10.0 h1:Izs2AKc+YVBa1TywcH54OKLTNCUMXRoFIqOs+n0FgOo= github.com/gethinode/mod-fontawesome v1.10.0/go.mod h1:xBKsZH3WJtMOItZVlp9SbO51uaBy6IbvUZSKpNu3b6Y= github.com/gethinode/mod-google-analytics v1.1.3 h1:24qxV5vKIex3zSdow+5r0o8rox1lrO31oGi0/XusBy4= github.com/gethinode/mod-google-analytics v1.1.3/go.mod h1:dl628cFozpCvoIMCiV7ujzQipjxcm3eatXrSfLPWNII= +github.com/gethinode/mod-google-analytics v1.1.4 h1:GkLzbSdVIMLWSQ4VOSaJZIKyofmVCzueiuiGc29jQOM= +github.com/gethinode/mod-google-analytics v1.1.4/go.mod h1:dl628cFozpCvoIMCiV7ujzQipjxcm3eatXrSfLPWNII= github.com/gethinode/mod-katex v1.1.2 h1:TbeVIWeG5TqldlVxpM1upOWj11RljXy4fhpOQIwOnS4= github.com/gethinode/mod-katex v1.1.2/go.mod h1:byAfpI3wuqNJIooTGVEGc1cjBhhCy4+CcK1H6495MYg= github.com/gethinode/mod-leaflet v1.2.0 h1:5q5LHmGNi9N4cdRDCsl/6oI8vY3oQ2ogNUjP3NCnk4Y= @@ -44,8 +56,12 @@ github.com/gethinode/mod-lottie v1.5.11 h1:xhxBPDS0iyUY+C1ANaD5EeQV7fO1FG0wMoCjg github.com/gethinode/mod-lottie v1.5.11/go.mod h1:6FKqk8c+Jkbk2udCxUKVLF1K1wrGwthPsOvRzeoPXRQ= github.com/gethinode/mod-mermaid v1.1.19 h1:9jvEF2QPDR/x6L7NvMmg1WO/kog2fB0K5uBwlpdZieg= github.com/gethinode/mod-mermaid v1.1.19/go.mod h1:rw6vrY9DpdJblwFwLuXCdy2kBHxMf6gGKWeetwfTSfc= +github.com/gethinode/mod-mermaid v1.1.20 h1:uW13FdZYCfI6sN7PjlsmVvjxLlab5oIeFE3V23ByD9U= +github.com/gethinode/mod-mermaid v1.1.20/go.mod h1:rw6vrY9DpdJblwFwLuXCdy2kBHxMf6gGKWeetwfTSfc= github.com/gethinode/mod-simple-datatables v1.1.0 h1:Qc8eJOcVjxIHNfgrZf/bKe8+spCLrJTVwsC8d9ct7i0= github.com/gethinode/mod-simple-datatables v1.1.0/go.mod h1:8q/6f3uAPNTTP5NjEJOuXr6tEWelRFLJfzVJ3AODMlQ= +github.com/gethinode/mod-simple-datatables v1.1.3 h1:a+uIfgc6c+9Zc38Q+Kzd3cWeFhC8BW/rP9/rnd2/ZKM= +github.com/gethinode/mod-simple-datatables v1.1.3/go.mod h1:8q/6f3uAPNTTP5NjEJOuXr6tEWelRFLJfzVJ3AODMlQ= github.com/gethinode/mod-utils/v2 v2.8.3 h1:t1MJcIdFhYi0gCkm8f0DYZwyfq7pRdRc0eNpqZa11ic= github.com/gethinode/mod-utils/v2 v2.8.3/go.mod h1:GTYeknoLujNjfDxI+V9Dcug26CYJSTJ0B/U2dagw9oY= github.com/nextapps-de/flexsearch v0.0.0-20240501124520-961c3ae84a87 h1:6PNbL0/LxO8Xl8MZSe5uvCidYNpFTz9nlWTqj2qdlzA= diff --git a/hugo_stats.json b/hugo_stats.json index d2d6a86..ba62a29 100644 --- a/hugo_stats.json +++ b/hugo_stats.json @@ -130,6 +130,7 @@ "col-9", "col-lg-2", "col-lg-8", + "col-md-1", "col-md-2", "col-md-3", "col-md-4", @@ -450,7 +451,6 @@ "blacklabeled-in-acquiring-legal-counsel", "body-file-collapse-1", "body-file-collapse-2", - "boob-timeline", "brian-alex-abernathy", "business-transactions", "changes-to-this-privacy-policy", @@ -481,7 +481,7 @@ "email-table-of-contents", "entity-relationship-diagram", "erica-tyler", - "evidenciary-artifacts", + "evidence-and-records", "evidentiary-artifacts", "fa-face-frown", "fa-id-card", @@ -795,6 +795,7 @@ "the-raid", "the-reality", "this-is-the-countys-policy", + "timeline-content", "to-start-with", "toast-container", "toast-copied-code-message", diff --git a/package-lock.json b/package-lock.json index f95cfd4..710cab7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -13,7 +13,7 @@ "autoprefixer": "^10.4.20", "cssnano": "^7.0.6", "cssnano-preset-advanced": "^7.0.6", - "hugo-bin": "0.135.0", + "hugo-bin": "0.136.0", "purgecss-whitelister": "^2.4.0" }, "devDependencies": { @@ -3551,9 +3551,9 @@ } }, "node_modules/hugo-bin": { - "version": "0.135.0", - "resolved": "https://registry.npmjs.org/hugo-bin/-/hugo-bin-0.135.0.tgz", - "integrity": "sha512-bdqIHNnL/HUlRhU3MruoHSFdvtHNBYEuU0jkE/MtMHvZ3c08wCirG2j9a91e4OwyGlmYpoaouTpLUKFZUvfdkg==", + "version": "0.136.0", + "resolved": "https://registry.npmjs.org/hugo-bin/-/hugo-bin-0.136.0.tgz", + "integrity": "sha512-9qZ/od7jQWfljI9WcSfSbDGBXoLOvUVD7lbArS8pcTui3vjUxYBvQH9FdmhoPPn4NRnW0beStobIduMuOPS9Wg==", "funding": [ { "type": "github", diff --git a/package.json b/package.json index 454c176..7c899ca 100644 --- a/package.json +++ b/package.json @@ -43,7 +43,7 @@ "autoprefixer": "^10.4.20", "cssnano": "^7.0.6", "cssnano-preset-advanced": "^7.0.6", - "hugo-bin": "0.135.0", + "hugo-bin": "0.136.0", "purgecss-whitelister": "^2.4.0" }, "devDependencies": { diff --git a/data/knightlabs.json b/static/knightlabs.json index f6a3722..f6a3722 100644 --- a/data/knightlabs.json +++ b/static/knightlabs.json |
