From f2e3ef95f886397116c21679a94437c9bd6ecb24 Mon Sep 17 00:00:00 2001 From: anoduck <9925396+anoduck@users.noreply.github.com> Date: Sun, 10 Nov 2024 17:34:34 -0500 Subject: refactor(content): :construction: Refactoring Directory "Docs" Refactoring content to be structured under heading "docs" --- .frontmatter/config/content/pagefolders/docs.json | 11 +++ .frontmatter/config/data/files/bs-timeline.json | 44 +++++++++ .frontmatter/config/data/files/knightlabs.json | 44 +++++++++ .frontmatter/config/data/folders/data.json | 43 --------- .frontmatter/config/data/types/bs-timeline.json | 38 ++++++++ .frontmatter/config/data/types/knightlabs.json | 86 +++++++++++++++++ .frontmatter/config/data/types/timeline.json | 38 -------- .../config/taxonomy/contenttypes/docs.json | 85 +++++++++++++++++ .vscode/settings.json | 3 +- content/docs/_index.md | 7 ++ content/persons/tboyle.md | 6 +- data/bs-timeline.yml | 102 +++++++++++++++++++++ data/knightlabs.json | 62 +++++++++++++ data/main.yaml | 6 -- data/timeline.yml | 102 --------------------- 15 files changed, 484 insertions(+), 193 deletions(-) create mode 100644 .frontmatter/config/content/pagefolders/docs.json create mode 100644 .frontmatter/config/data/files/bs-timeline.json create mode 100644 .frontmatter/config/data/files/knightlabs.json delete mode 100644 .frontmatter/config/data/folders/data.json create mode 100644 .frontmatter/config/data/types/bs-timeline.json create mode 100644 .frontmatter/config/data/types/knightlabs.json delete mode 100644 .frontmatter/config/data/types/timeline.json create mode 100644 .frontmatter/config/taxonomy/contenttypes/docs.json create mode 100644 content/docs/_index.md create mode 100644 data/bs-timeline.yml create mode 100644 data/knightlabs.json delete mode 100644 data/main.yaml delete mode 100644 data/timeline.yml diff --git a/.frontmatter/config/content/pagefolders/docs.json b/.frontmatter/config/content/pagefolders/docs.json new file mode 100644 index 0000000..c31aefc --- /dev/null +++ b/.frontmatter/config/content/pagefolders/docs.json @@ -0,0 +1,11 @@ +{ + "$schema": "https://frontmatter.codes/config/content.pagefolders.schema.json", + "title": "docs", + "path": "[[workspace]]/content/docs", + "filePrefix": null, + "previewPath": "docs", + "contentTypes": [ + "docs", + "index" + ] +} \ No newline at end of file diff --git a/.frontmatter/config/data/files/bs-timeline.json b/.frontmatter/config/data/files/bs-timeline.json new file mode 100644 index 0000000..f845efe --- /dev/null +++ b/.frontmatter/config/data/files/bs-timeline.json @@ -0,0 +1,44 @@ +{ + "$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": true, + "schema": { + "title": "Timeline", + "type": "object", + "required": [ + "title", + "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": "bs-timeline" +} \ No newline at end of file diff --git a/.frontmatter/config/data/files/knightlabs.json b/.frontmatter/config/data/files/knightlabs.json new file mode 100644 index 0000000..e8d5aac --- /dev/null +++ b/.frontmatter/config/data/files/knightlabs.json @@ -0,0 +1,44 @@ +{ + "$schema": "https://frontmatter.codes/config/data.files.schema.json", + "id": "knightlabs", + "title": "knightlabs", + "file": "[[workspace]]/data/knightlabs.json", + "labelField": "name", + "fileType": "json", + "singleEntry": true, + "schema": { + "title": "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": "knightlabs" +} \ No newline at end of file diff --git a/.frontmatter/config/data/folders/data.json b/.frontmatter/config/data/folders/data.json deleted file mode 100644 index 77ffcf2..0000000 --- a/.frontmatter/config/data/folders/data.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "$schema": "https://frontmatter.codes/config/data.folders.schema.json", - "id": "Data", - "path": "[[workspace]]/data", - "singleEntry": false, - "enableFileCreation": true, - "fileType": "yaml", - "type": "timeline", - "schema": { - "title": "Timeline", - "type": "object", - "required": [ - "title", - "date" - ], - "properties": { - "title": { - "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" - } - } - } -} \ No newline at end of file diff --git a/.frontmatter/config/data/types/bs-timeline.json b/.frontmatter/config/data/types/bs-timeline.json new file mode 100644 index 0000000..54a2ecc --- /dev/null +++ b/.frontmatter/config/data/types/bs-timeline.json @@ -0,0 +1,38 @@ +{ + "$schema": "https://frontmatter.codes/config/data.files.schema.json", + "id": "bs-timeline", + "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" + } + } + } +} \ No newline at end of file diff --git a/.frontmatter/config/data/types/knightlabs.json b/.frontmatter/config/data/types/knightlabs.json new file mode 100644 index 0000000..8d9fc80 --- /dev/null +++ b/.frontmatter/config/data/types/knightlabs.json @@ -0,0 +1,86 @@ +{ + "$schema": "https://frontmatter.codes/config/data.files.schema.json", + "id": "knightlabs", + "schema": { + "title": "Knightlabs Timeline", + "type": "object", + "required": [ + "name", + "date" + ], + "properties": { + "year": { + "type": "number", + "title": "Year" + }, + "month": { + "type": "number", + "title": "Month" + }, + "day": { + "title": "Day", + "type": "number" + }, + "time": { + "title": "Time", + "type": "string" + }, + "end year": { + "type": "number", + "title": "End Year" + }, + "end month": { + "type": "number", + "title": "End Month" + }, + "end day": { + "title": "End Day", + "type": "number" + }, + "end time": { + "title": "End Time", + "type": "string" + }, + "display date": { + "title": "Display Date", + "type": "string" + }, + "headline": { + "title": "headline", + "type": "string" + }, + "text": { + "type": "string", + "title": "Text" + }, + "media": { + "type": "string", + "title": "Media" + }, + "media credit": { + "type": "string", + "title": "Media Credit" + }, + "media caption": { + "type": "string", + "title": "Media Caption" + }, + "media thumbnail": { + "type": "string", + "title": "Media Thumbnail" + }, + "type": { + "type": "string", + "title": "Type" + }, + "group": { + "title": "Group", + "type": "string" + }, + "background": { + "title": "Background", + "type": "string" + } + } + } +} \ No newline at end of file diff --git a/.frontmatter/config/data/types/timeline.json b/.frontmatter/config/data/types/timeline.json deleted file mode 100644 index fb6d713..0000000 --- a/.frontmatter/config/data/types/timeline.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "$schema": "https://frontmatter.codes/config/data.files.schema.json", - "id": "timeline", - "schema": { - "title": "Timeline", - "type": "object", - "required": [ - "title", - "date" - ], - "properties": { - "title": { - "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" - } - } - } -} \ No newline at end of file diff --git a/.frontmatter/config/taxonomy/contenttypes/docs.json b/.frontmatter/config/taxonomy/contenttypes/docs.json new file mode 100644 index 0000000..248f033 --- /dev/null +++ b/.frontmatter/config/taxonomy/contenttypes/docs.json @@ -0,0 +1,85 @@ +{ + "$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json", + "name": "docs", + "pageBundle": false, + "previewPath": null, + "fields": [ + { + "title": "Title", + "name": "title", + "type": "string", + "single": true + }, + { + "title": "Description", + "name": "description", + "type": "string" + }, + { + "title": "date", + "name": "date", + "type": "datetime" + }, + { + "title": "Metadata", + "name": "metadata", + "type": "choice", + "choices": [ + "full", + "original", + "none" + ], + "default": "full" + }, + { + "title": "Categories", + "name": "categories", + "type": "string", + "single": true, + "default": "Evidence" + }, + { + "title": "Tags", + "name": "tags", + "type": "tags" + }, + { + "title": "Thumbnail", + "name": "thumbnail", + "type": "string" + }, + { + "title": "Type", + "name": "type", + "type": "choice", + "choices": [ + "default", + "docs", + "minimal" + ], + "default": "docs" + }, + { + "title": "Draft", + "name": "draft", + "type": "draft" + }, + { + "title": "Alias", + "name": "alias", + "type": "list" + }, + { + "title": "Modules", + "name": "modules", + "type": "string" + }, + { + "title": "FrontMatter Content Type", + "name": "fmContentType", + "type": "string", + "single": true, + "default": "evidence" + } + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json index b8ebeb8..fc2a8d4 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -4,6 +4,7 @@ "content" ], "cSpell.words": [ - "colormode" + "colormode", + "knightlabs" ] } \ No newline at end of file diff --git a/content/docs/_index.md b/content/docs/_index.md new file mode 100644 index 0000000..1cb9df4 --- /dev/null +++ b/content/docs/_index.md @@ -0,0 +1,7 @@ +--- +title: Docs +categories: docs +thumbnail: "" +alias: [] +fmContentType: index +--- diff --git a/content/persons/tboyle.md b/content/persons/tboyle.md index 206c4f9..abb8978 100644 --- a/content/persons/tboyle.md +++ b/content/persons/tboyle.md @@ -28,12 +28,12 @@ Truman Boyle is the current newly elected commissioner for the county who defeat The question remains, what will Mr. Boyle do about our family's quest for some semblance of accountability and fairness? Is he getting involved to right the wrongs done by his daughter's ex-husband, or is his new presence on the political stage, yet another effort to cover up for his daughters ex-husband? It would be far easier to right the wrongs, than try to cover it up at this point. The truth has a way of rising to the occasion and revealing itself to those who search for it. -Mr. Boyle along with his daughter knew exactly what was going on, and condoned it at the time. +Mr. Boyle helped, Chief Matthews move his daughter and granddaughters into a camping trailer behind Dayton house, and as such would have possession of knowledge on how it was arranged in order to prevent anyone else in the neighborhood, not even the next door neighbors, from finding it out. He must have known about the three-way deal between Doug, Shane, and Matt. Mr. Boyle is very smart, and would have known illegally brokering the sale of Bill Dayton's property in exchange for personal benefit was against the law. He probably didn't want to say anything out of respect for his daughter. -More than likely, he was rooked into helping Chief Matthews move his daughter and granddaughters into a camping trailer behind Dayton house, and as such would have possession of knowledge on how it was arranged in order to prevent anyone else in the neighborhood, not even the next door neighbors, from finding it out. He would know about the three-way deal the fire chief had arranged, to "manage"(illegally broker) the sale of Bill Dayton's property in exchange for around a thirty percent discount on the price of house, and the sweat heart deal the Chief made with Shane Tyler to ensure Shane would be the only one allowed to make a bid on the other property owned by Bill Dayton at a discounted price, in exchange for using equipment owned by The Helix Group LLC without their knowledge or permission, which constitutes minor theft of equipment usage in corporate terms. Boyle knows about the months Chief Matthews took off of work to embellish upon the Dayton Home before buying it, and the habitual practice of stealing time from county taxpayers practiced by the Fire Chief. +for around a thirty percent discount on the price of house, and the sweat heart deal the Chief made with Shane Tyler to ensure Shane would be the only one allowed to make a bid on the other property owned by Bill Dayton at a discounted price, in exchange for using equipment owned by The Helix Group LLC without their knowledge or permission, which constitutes minor theft of equipment usage in corporate terms. Boyle knows about the months Chief Matthews took off of work to embellish upon the Dayton Home before buying it, and the habitual practice of stealing time from county taxpayers practiced by the Fire Chief. Having known our family for most of, if not all of his life, Mr. Boyle would know the allegations that led to the raid of our home by seven deputies were obvious fabrications, and would also be able to clarify the Fire Chief's involvement in the raid, since his own daughter appears to have been informed about it, at the latest, as it was happening. The arrest report, which led to six hours in solitary confinement and over 48 hours being detained without warning for an unknown reason, would easily be recognized as suspect of falsification. -Most critical of all, Mr. Boyle knows his former son-in-law, Chief Matthews, is lying to county officials by claiming to be out of town, the night Chief Matthews refused to fulfill his duty as a public safety officer. That night, Chief Matthews was seen sitting in an off-road vehicle less than twenty-five yards from our oldest family member, who also possesses a heart condition, and was desperately searching for her missing son in the middle of the night. Chief Matthews knew exactly where her son was, because he was just leaving the home of the individuals who he set up a crooked real estate for and who exaggerated the events in order to have her son jailed. When she spotted him, and called out for his help, all he had to do was say, "Your son has been detained by the sheriff." Instead, Chief Matthews left her in the dark alone, and allowed for her condition to deteriorate further in despair as she continued to look for her missing son for hours. Mr. Boyle's father used to work alongside this family member, would tell jokes and have long talks with her while the two braked from work. Mr. Boyle has always treated our family with respect and integrity, and not once has failed to perform the duties assigned to him by the Georgia State Patrol. It is hard to believe Commissioner Boyle would stand for such obvious dishonest incompetence. +Most critical of all, Mr. Boyle knows his former son-in-law, Chief Matthews, is lying to county officials by claiming to be out of town, the night Chief Matthews refused to fulfill his duty as a public safety officer. That night, Chief Matthews was seen sitting in an off-road vehicle less than twenty-five yards from our oldest family member, who also possesses a heart condition, and was desperately searching for her missing son in the middle of the night. Chief Matthews knew exactly where her son was, because he was just leaving the home of the individuals who he set up a crooked real estate for and who exaggerated the events in order to have her son jailed. When she spotted him, and called out for his help, all he had to do was say, "Your son has been detained by the sheriff." Instead, Chief Matthews left her in the dark alone, and allowed for her condition to deteriorate further in despair as she continued to look for her missing son for hours. Mr. Boyle's father used to work alongside this family member, would tell jokes and have long talks with her while the two braked from work. Then again, if there is one thing we have learned from this ordeal, it is not to count your chickens before they hatch. There has been a lot of intentional smearing of our family, and Commissioner Boyle's daughter was married to the one who appears to have done some of it. He might actually be convinced enough to believe some of it. As hard as it is to believe Commissioner Boyle didn't know what his son-in-law was doing to us, there are no signs he ever made an effort to stop it. \ No newline at end of file diff --git a/data/bs-timeline.yml b/data/bs-timeline.yml new file mode 100644 index 0000000..dd2b333 --- /dev/null +++ b/data/bs-timeline.yml @@ -0,0 +1,102 @@ +- title: Discovery of plans for a Solar Power Plant + icon: fas solar-panel + color: info + date: '2016-06-03T00:00:00.000Z' + url: '' + content: >- + Discovered on accident, as it appeared we were not intended to find out. + Project was railroaded through the county commissioners. +- title: First letter written to Dayton without response + icon: fas globe + color: success + date: '2020-10-05T00:00:00.000Z' + url: '' + content: Lorem ipsum dolor sit amet. +- title: Chief Matthews purchases Dayton Property + icon: fas house + color: warning + date: '2020-12-31T00:00:00.000Z' + url: v0.8.1 + content: Cupiditate ducimus officiis quod! +- title: Shane Tyler vandalizes yard with truck and trailer + icon: fas heart + color: info + date: '2021-01-01T00:00:00.000Z' + content: >- + Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cupiditate ducimus + officiis quod! Aperiam eveniet nam nostrum odit quasi ullam voluptatum. + Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cupiditate ducimus + officiis quod! Aperiam eveniet nam nostrum odit quasi ullam voluptatum. +- title: Shane Tyler begins to clear land before sale is finalized + icon: fas house + color: warning + date: '2021-02-26T00:00:00.000Z' + url: v0.8.1 + content: Cupiditate ducimus officiis quod! +- title: >- + Sheriff Dept raids home over false allegations - beginning of difficulties + with L.E.O. + icon: fas rocket + color: primary + date: '2021-03-23T00:00:00.000Z' + url: https://github.com/gethinode/hinode/releases/tag/v0.15.2 + content: >- + Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cupiditate ducimus + officiis quod! Aperiam eveniet nam nostrum odit quasi ullam voluptatum. + Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cupiditate ducimus + officiis quod! Aperiam eveniet nam nostrum odit quasi ullam voluptatum. +- title: Discovery of Chief Matthews Poaching spot. + icon: fas globe + color: success + date: '2022-02-22T00:00:00.000Z' + url: v0.14.0 + content: Lorem ipsum dolor sit amet. +- title: Mr. Dayton Passes + icon: fas house + color: warning + date: '2022-10-07T00:00:00.000Z' + url: v0.8.1 + content: Cupiditate ducimus officiis quod! +- title: Neighbor's kids through party until 2-3am + icon: fas heart + color: info + date: '2022-11-07T00:00:00.000Z' + content: >- + Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cupiditate ducimus + officiis quod! Aperiam eveniet nam nostrum odit quasi ullam voluptatum. + Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cupiditate ducimus + officiis quod! Aperiam eveniet nam nostrum odit quasi ullam voluptatum. +- title: Informed of Subdivision + icon: fas rocket + color: primary + date: '2023-12-18T00:00:00.000Z' + url: https://github.com/gethinode/hinode/releases/tag/v0.15.2 + content: >- + Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cupiditate ducimus + officiis quod! Aperiam eveniet nam nostrum odit quasi ullam voluptatum. + Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cupiditate ducimus + officiis quod! Aperiam eveniet nam nostrum odit quasi ullam voluptatum. +- title: >- + Detained in county jail, reason unknown - Fire Chief ignores calls for aid + in search. + icon: fas globe + color: success + date: '2023-10-22T00:00:00.000Z' + url: v0.14.0 + content: Lorem ipsum dolor sit amet. +- title: Neighbors steal mailbox with important tax documentation. + icon: fas house + color: warning + date: '2023-12-23T00:00:00.000Z' + url: v0.8.1 + content: Cupiditate ducimus officiis quod! +- title: Firearm discharged by neighbor while walking dog. + icon: fas heart + color: info + date: '2024-05-12T00:00:00.000Z' + content: >- + Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cupiditate ducimus + officiis quod! Aperiam eveniet nam nostrum odit quasi ullam voluptatum. + Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cupiditate ducimus + officiis quod! Aperiam eveniet nam nostrum odit quasi ullam voluptatum. + diff --git a/data/knightlabs.json b/data/knightlabs.json new file mode 100644 index 0000000..0d18776 --- /dev/null +++ b/data/knightlabs.json @@ -0,0 +1,62 @@ +[ + { + "Year": "", + "Month": "", + "Day": "", + "Time": "", + "End Year": "", + "End Month": "", + "End Day": "", + "End Time": "", + "Display Date": "", + "Headline": "Google Spreadsheet Example", + "Text": " This is a test of using google spreadsheets as a source for the timeline tool. This is a 'title' slide", + "Media": " so it doesn't need a date. It automatically occurs first", + "Media Credit": " and doesn't appear in the timeline below. ", + "Media Caption": "https://www.flickr.com/photos/zachwise/6115056146/in/photostream", + "Media Thumbnail": "Zach Wise/verite.co", + "Type": " Chicago by zach.wise ", + "Background": "" + }, + { + "Year": "2011", + "Month": "11", + "Day": "1", + "Time": "", + "End Year": "2011", + "End Month": "12", + "End Day": "15", + "End Time": "", + "Display Date": "", + "Headline": "Another Flickr Example", + "Text": "It's Easy to Make Your Own Timeline", + "Media": "https://www.flickr.com/photos/zachwise/6894476777/in/photostream", + "Media Credit": "Zach Wise/verite.co", + "Media Caption": "Chicago to NYC", + "Media Thumbnail": "", + "Type": "", + "Group": "", + "Background": "#333333" + }, + { + "Year": "2011", + "Month": "11", + "Day": "16", + "Time": "05:58:44", + "End Year": "2011", + "End Month": "11", + "End Day": "16", + "End Time": "07:30:00", + "Display Date": "", + "Headline": "Vimeo Example", + "Text": " Illustrate your Timeline with photos", + "Media": " videos", + "Media Credit": " tweets and more. ", + "Media Caption": "https://vimeo.com/143407878", + "Media Thumbnail": "Knight Lab", + "Type": "A video about how to make timelines!", + "Group": "", + "Background": "" + } +] \ No newline at end of file diff --git a/data/main.yaml b/data/main.yaml deleted file mode 100644 index af73d86..0000000 --- a/data/main.yaml +++ /dev/null @@ -1,6 +0,0 @@ -- title: PreDayton - date: '2018-05-01' - icon: fa fa-sun - content: >- - Just as everyone was going crazy outside in the big world, things were going - cracy here. diff --git a/data/timeline.yml b/data/timeline.yml deleted file mode 100644 index dd2b333..0000000 --- a/data/timeline.yml +++ /dev/null @@ -1,102 +0,0 @@ -- title: Discovery of plans for a Solar Power Plant - icon: fas solar-panel - color: info - date: '2016-06-03T00:00:00.000Z' - url: '' - content: >- - Discovered on accident, as it appeared we were not intended to find out. - Project was railroaded through the county commissioners. -- title: First letter written to Dayton without response - icon: fas globe - color: success - date: '2020-10-05T00:00:00.000Z' - url: '' - content: Lorem ipsum dolor sit amet. -- title: Chief Matthews purchases Dayton Property - icon: fas house - color: warning - date: '2020-12-31T00:00:00.000Z' - url: v0.8.1 - content: Cupiditate ducimus officiis quod! -- title: Shane Tyler vandalizes yard with truck and trailer - icon: fas heart - color: info - date: '2021-01-01T00:00:00.000Z' - content: >- - Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cupiditate ducimus - officiis quod! Aperiam eveniet nam nostrum odit quasi ullam voluptatum. - Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cupiditate ducimus - officiis quod! Aperiam eveniet nam nostrum odit quasi ullam voluptatum. -- title: Shane Tyler begins to clear land before sale is finalized - icon: fas house - color: warning - date: '2021-02-26T00:00:00.000Z' - url: v0.8.1 - content: Cupiditate ducimus officiis quod! -- title: >- - Sheriff Dept raids home over false allegations - beginning of difficulties - with L.E.O. - icon: fas rocket - color: primary - date: '2021-03-23T00:00:00.000Z' - url: https://github.com/gethinode/hinode/releases/tag/v0.15.2 - content: >- - Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cupiditate ducimus - officiis quod! Aperiam eveniet nam nostrum odit quasi ullam voluptatum. - Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cupiditate ducimus - officiis quod! Aperiam eveniet nam nostrum odit quasi ullam voluptatum. -- title: Discovery of Chief Matthews Poaching spot. - icon: fas globe - color: success - date: '2022-02-22T00:00:00.000Z' - url: v0.14.0 - content: Lorem ipsum dolor sit amet. -- title: Mr. Dayton Passes - icon: fas house - color: warning - date: '2022-10-07T00:00:00.000Z' - url: v0.8.1 - content: Cupiditate ducimus officiis quod! -- title: Neighbor's kids through party until 2-3am - icon: fas heart - color: info - date: '2022-11-07T00:00:00.000Z' - content: >- - Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cupiditate ducimus - officiis quod! Aperiam eveniet nam nostrum odit quasi ullam voluptatum. - Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cupiditate ducimus - officiis quod! Aperiam eveniet nam nostrum odit quasi ullam voluptatum. -- title: Informed of Subdivision - icon: fas rocket - color: primary - date: '2023-12-18T00:00:00.000Z' - url: https://github.com/gethinode/hinode/releases/tag/v0.15.2 - content: >- - Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cupiditate ducimus - officiis quod! Aperiam eveniet nam nostrum odit quasi ullam voluptatum. - Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cupiditate ducimus - officiis quod! Aperiam eveniet nam nostrum odit quasi ullam voluptatum. -- title: >- - Detained in county jail, reason unknown - Fire Chief ignores calls for aid - in search. - icon: fas globe - color: success - date: '2023-10-22T00:00:00.000Z' - url: v0.14.0 - content: Lorem ipsum dolor sit amet. -- title: Neighbors steal mailbox with important tax documentation. - icon: fas house - color: warning - date: '2023-12-23T00:00:00.000Z' - url: v0.8.1 - content: Cupiditate ducimus officiis quod! -- title: Firearm discharged by neighbor while walking dog. - icon: fas heart - color: info - date: '2024-05-12T00:00:00.000Z' - content: >- - Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cupiditate ducimus - officiis quod! Aperiam eveniet nam nostrum odit quasi ullam voluptatum. - Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cupiditate ducimus - officiis quod! Aperiam eveniet nam nostrum odit quasi ullam voluptatum. - -- cgit v1.2.3