diff options
| author | anoduck <9925396+anoduck@users.noreply.github.com> | 2024-11-10 17:34:34 -0500 |
|---|---|---|
| committer | anoduck <9925396+anoduck@users.noreply.github.com> | 2024-11-10 17:34:34 -0500 |
| commit | f2e3ef95f886397116c21679a94437c9bd6ecb24 (patch) | |
| tree | 3156d1cb91f668f8ac82c93db193da9e190abf53 | |
| parent | 047de73f9e38edd4e70829d9110226018b8e619e (diff) | |
refactor(content): :construction: Refactoring Directory "Docs"
Refactoring content to be structured under heading "docs"
Diffstat (limited to '')
| -rw-r--r-- | .frontmatter/config/content/pagefolders/docs.json | 11 | ||||
| -rw-r--r-- | .frontmatter/config/data/files/bs-timeline.json (renamed from .frontmatter/config/data/folders/data.json) | 17 | ||||
| -rw-r--r-- | .frontmatter/config/data/files/knightlabs.json | 44 | ||||
| -rw-r--r-- | .frontmatter/config/data/types/bs-timeline.json (renamed from .frontmatter/config/data/types/timeline.json) | 8 | ||||
| -rw-r--r-- | .frontmatter/config/data/types/knightlabs.json | 86 | ||||
| -rw-r--r-- | .frontmatter/config/taxonomy/contenttypes/docs.json | 85 | ||||
| -rw-r--r-- | .vscode/settings.json | 3 | ||||
| -rw-r--r-- | content/docs/_index.md | 7 | ||||
| -rw-r--r-- | content/persons/tboyle.md | 6 | ||||
| -rw-r--r-- | data/bs-timeline.yml (renamed from data/timeline.yml) | 0 | ||||
| -rw-r--r-- | data/knightlabs.json | 62 | ||||
| -rw-r--r-- | data/main.yaml | 6 |
12 files changed, 313 insertions, 22 deletions
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/folders/data.json b/.frontmatter/config/data/files/bs-timeline.json index 77ffcf2..f845efe 100644 --- a/.frontmatter/config/data/folders/data.json +++ b/.frontmatter/config/data/files/bs-timeline.json @@ -1,11 +1,11 @@ { - "$schema": "https://frontmatter.codes/config/data.folders.schema.json", - "id": "Data", - "path": "[[workspace]]/data", - "singleEntry": false, - "enableFileCreation": true, + "$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", - "type": "timeline", + "singleEntry": true, "schema": { "title": "Timeline", "type": "object", @@ -14,7 +14,7 @@ "date" ], "properties": { - "title": { + "name": { "type": "string", "title": "Title" }, @@ -39,5 +39,6 @@ "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/types/timeline.json b/.frontmatter/config/data/types/bs-timeline.json index fb6d713..54a2ecc 100644 --- a/.frontmatter/config/data/types/timeline.json +++ b/.frontmatter/config/data/types/bs-timeline.json @@ -1,15 +1,15 @@ { "$schema": "https://frontmatter.codes/config/data.files.schema.json", - "id": "timeline", + "id": "bs-timeline", "schema": { - "title": "Timeline", + "title": "Bootstrap Timeline", "type": "object", "required": [ - "title", + "name", "date" ], "properties": { - "title": { + "name": { "type": "string", "title": "Title" }, 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/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/timeline.yml b/data/bs-timeline.yml index dd2b333..dd2b333 100644 --- a/data/timeline.yml +++ b/data/bs-timeline.yml 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": " <a href= http://www.flickr.com/photos/zachwise/6115056146/ title= Chicago by zach.wise", + "Group": " on Flickr >Chicago by zach.wise</a> ", + "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. |
