diff options
21 files changed, 933 insertions, 677 deletions
diff --git a/.frontmatter/config/content/pagefolders/content.json b/.frontmatter/config/content/pagefolders/content.json new file mode 100644 index 0000000..b3a8201 --- /dev/null +++ b/.frontmatter/config/content/pagefolders/content.json @@ -0,0 +1,4 @@ +{ + "title": "content", + "path": "[[workspace]]/content" +}
\ No newline at end of file diff --git a/.frontmatter/config/content/pagefolders/evidence.json b/.frontmatter/config/content/pagefolders/evidence.json new file mode 100644 index 0000000..f7e06d0 --- /dev/null +++ b/.frontmatter/config/content/pagefolders/evidence.json @@ -0,0 +1,4 @@ +{ + "title": "Evidence", + "path": "[[workspace]]/content/evidence" +}
\ No newline at end of file diff --git a/.frontmatter/config/content/pagefolders/legal.json b/.frontmatter/config/content/pagefolders/legal.json new file mode 100644 index 0000000..8a6a43b --- /dev/null +++ b/.frontmatter/config/content/pagefolders/legal.json @@ -0,0 +1,4 @@ +{ + "title": "Legal", + "path": "[[workspace]]/content/legal" +}
\ No newline at end of file diff --git a/.frontmatter/config/content/pagefolders/persons.json b/.frontmatter/config/content/pagefolders/persons.json new file mode 100644 index 0000000..e83695a --- /dev/null +++ b/.frontmatter/config/content/pagefolders/persons.json @@ -0,0 +1,4 @@ +{ + "title": "Persons", + "path": "[[workspace]]/content/persons" +}
\ No newline at end of file diff --git a/.frontmatter/config/content/pagefolders/posts.json b/.frontmatter/config/content/pagefolders/posts.json new file mode 100644 index 0000000..2df110b --- /dev/null +++ b/.frontmatter/config/content/pagefolders/posts.json @@ -0,0 +1,4 @@ +{ + "title": "Posts", + "path": "[[workspace]]/content/posts" +}
\ No newline at end of file diff --git a/.frontmatter/config/content/pagefolders/video.json b/.frontmatter/config/content/pagefolders/video.json new file mode 100644 index 0000000..9f00748 --- /dev/null +++ b/.frontmatter/config/content/pagefolders/video.json @@ -0,0 +1,4 @@ +{ + "title": "Video", + "path": "[[workspace]]/content/video" +}
\ No newline at end of file diff --git a/.frontmatter/config/content/snippets/docs.json b/.frontmatter/config/content/snippets/docs.json new file mode 100644 index 0000000..c6bc931 --- /dev/null +++ b/.frontmatter/config/content/snippets/docs.json @@ -0,0 +1,29 @@ +{ + "Docs": { + "description": "Show Contents of Toml", + "body": "{{< docs name=\"[[Section]]\" file=\"[[File Path]]\" id=[[docs-collapse-{X}]] >}}", + "fields": [ + { + "name": "Section", + "title": "Section", + "type": "string", + "single": true, + "default": "" + }, + { + "name": "File Path", + "title": "File Path", + "type": "string", + "single": true, + "default": "" + }, + { + "name": "docs-collapse-{X}", + "title": "docs-collapse-{X}", + "type": "string", + "single": true, + "default": "" + } + ] + } +}
\ No newline at end of file diff --git a/.frontmatter/config/content/snippets/file.json b/.frontmatter/config/content/snippets/file.json new file mode 100644 index 0000000..4c511b5 --- /dev/null +++ b/.frontmatter/config/content/snippets/file.json @@ -0,0 +1,22 @@ +{ + "File": { + "description": "Display Entire Contents of File", + "body": "{{< file path=[[File Path]] id=\"[[file-collapse-{x}]]\" >}}", + "fields": [ + { + "name": "File Path", + "title": "File Path", + "type": "string", + "single": true, + "default": "" + }, + { + "name": "file-collapse-{x}", + "title": "file-collapse-{x}", + "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 new file mode 100644 index 0000000..c6663d0 --- /dev/null +++ b/.frontmatter/config/content/snippets/image.json @@ -0,0 +1,37 @@ +{ + "Image": { + "description": "Image Shortcode for Digital Asset Managers", + "body": "{{< image src=\"[[SRC_URL]]\" ratio=\"[[Ratio]]\" class=\"[[Class]]\" wrapper=\"[[ Wrapper]]\" >}}", + "fields": [ + { + "name": "SRC_URL", + "title": "SRC_URL", + "type": "string", + "single": true, + "default": "" + }, + { + "name": "Ratio", + "title": "Ratio", + "type": "string", + "single": true, + "default": "" + }, + { + "name": "Class", + "title": "Class", + "type": "string", + "single": true, + "default": "" + }, + { + "name": "Wrapper", + "title": "Wrapper", + "type": "string", + "single": true, + "default": "" + } + ], + "isMediaSnippet": true + } +}
\ No newline at end of file diff --git a/.frontmatter/config/content/snippets/link.json b/.frontmatter/config/content/snippets/link.json new file mode 100644 index 0000000..4b145ef --- /dev/null +++ b/.frontmatter/config/content/snippets/link.json @@ -0,0 +1,36 @@ +{ + "Link": { + "description": "Managed Link Insertion", + "body": "{{< link title=\"[[Title]]\" url=\"[[Url]]\" cue=[[true|false]] [[Link Name]] >}}", + "fields": [ + { + "name": "Title", + "title": "Title", + "type": "string", + "single": true, + "default": "" + }, + { + "name": "Url", + "title": "Url", + "type": "string", + "single": true, + "default": "" + }, + { + "name": "true|false", + "title": "true|false", + "type": "string", + "single": true, + "default": "" + }, + { + "name": "Link Name", + "title": "Link Name", + "type": "string", + "single": true, + "default": "" + } + ] + } +}
\ No newline at end of file diff --git a/.frontmatter/config/content/snippets/map.json b/.frontmatter/config/content/snippets/map.json new file mode 100644 index 0000000..83a7682 --- /dev/null +++ b/.frontmatter/config/content/snippets/map.json @@ -0,0 +1,29 @@ +{ + "Map": { + "description": "Inject a Map", + "body": "{{< map lat=[[Latitude]] long=[[Longitude]] popup=[[Display Text]] >}}", + "fields": [ + { + "name": "Latitude", + "title": "Latitude", + "type": "string", + "single": true, + "default": "" + }, + { + "name": "Longitude", + "title": "Longitude", + "type": "string", + "single": true, + "default": "" + }, + { + "name": "Display Text", + "title": "Display Text", + "type": "string", + "single": true, + "default": "" + } + ] + } +}
\ No newline at end of file diff --git a/.frontmatter/config/content/snippets/persona.json b/.frontmatter/config/content/snippets/persona.json new file mode 100644 index 0000000..7d7bd78 --- /dev/null +++ b/.frontmatter/config/content/snippets/persona.json @@ -0,0 +1,23 @@ +{ + "Persona": { + "description": "Profile Card", + "body": "{{< persona thumbnail=\"[[Thumbnail]]\" title=\"{{title}}\" color=\"[[color]]\" >}}", + "isMediaSnippet": true, + "fields": [ + { + "name": "Thumbnail", + "title": "Thumbnail", + "type": "string", + "single": true, + "default": "" + }, + { + "name": "color", + "title": "color", + "type": "string", + "single": true, + "default": "" + } + ] + } +}
\ No newline at end of file diff --git a/.frontmatter/config/data/files/timeline.json b/.frontmatter/config/data/files/timeline.json new file mode 100644 index 0000000..c9d279e --- /dev/null +++ b/.frontmatter/config/data/files/timeline.json @@ -0,0 +1,40 @@ +{ + "id": "timeline", + "title": "Timeline", + "file": "[[workspace]]/data/timeline.yml", + "fileType": "yaml", + "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/folders/data.json b/.frontmatter/config/data/folders/data.json new file mode 100644 index 0000000..6925b21 --- /dev/null +++ b/.frontmatter/config/data/folders/data.json @@ -0,0 +1,8 @@ +{ + "id": "Data", + "path": "[[workspace]]/data", + "singleEntry": false, + "enableFileCreation": true, + "fileType": "yaml", + "type": "data" +}
\ No newline at end of file diff --git a/.frontmatter/config/taxonomy/default.json b/.frontmatter/config/taxonomy/default.json new file mode 100644 index 0000000..a7cb1c5 --- /dev/null +++ b/.frontmatter/config/taxonomy/default.json @@ -0,0 +1,108 @@ +{ + "name": "default", + "pageBundle": false, + "previewPath": null, + "fields": [ + { + "title": "Title", + "name": "title", + "type": "string", + "single": true + }, + { + "title": "Date", + "name": "date", + "type": "datetime", + "default": "{{now}}", + "isPublishDate": true + }, + { + "title": "Description", + "name": "description", + "type": "string" + }, + { + "title": "Draft", + "name": "draft", + "type": "draft" + }, + { + "title": "Tags", + "name": "tags", + "type": "tags" + }, + { + "title": "Icon", + "name": "icon", + "type": "string", + "single": true + }, + { + "title": "Type", + "name": "type", + "type": "choice", + "choices": [ + "default", + "docs", + "minimal" + ], + "default": "default" + }, + { + "title": "Metadata", + "name": "metadata", + "type": "string" + }, + { + "title": "Download", + "name": "download", + "type": "string", + "single": true + }, + { + "title": "Thumbnail", + "name": "thumbnail", + "type": "fields", + "fields": [ + { + "title": "URL", + "name": "url", + "type": "image" + }, + { + "title": "Author", + "name": "author", + "type": "string", + "single": true + }, + { + "title": "AuthorUrl", + "name": "authorUrl", + "type": "string" + }, + { + "title": "Origin", + "name": "origin", + "type": "string", + "single": true + }, + { + "title": "OriginUrl", + "name": "originUrl", + "type": "string" + } + ] + }, + { + "title": "Author", + "name": "author", + "type": "string", + "single": true + }, + { + "title": "Links", + "name": "navigationLinks", + "type": "list" + } + ] + }
\ No newline at end of file diff --git a/.frontmatter/config/taxonomy/docs.json b/.frontmatter/config/taxonomy/docs.json new file mode 100644 index 0000000..56da5c5 --- /dev/null +++ b/.frontmatter/config/taxonomy/docs.json @@ -0,0 +1,44 @@ +{ + "name": "Docs", + "pageBundle": false, + "previewPath": null, + "fields": [ + { + "title": "Title", + "name": "title", + "type": "string", + "single": true + }, + { + "title": "Description", + "name": "description", + "type": "string" + }, + { + "title": "Metadata", + "name": "metadata", + "type": "string" + }, + { + "title": "Categories", + "name": "categories", + "type": "choice", + "choices": [ + "Persons", + "Evidence", + "Legal" + ] + }, + { + "title": "Type", + "name": "type", + "type": "choice", + "choices": [ + "default", + "docs", + "minimal" + ], + "default": "docs" + } + ] +}
\ No newline at end of file diff --git a/.frontmatter/config/taxonomy/minimal.json b/.frontmatter/config/taxonomy/minimal.json new file mode 100644 index 0000000..3c730eb --- /dev/null +++ b/.frontmatter/config/taxonomy/minimal.json @@ -0,0 +1,29 @@ +{ + "name": "Minimal", + "pageBundle": false, + "previewPath": null, + "fields": [ + { + "title": "Title", + "name": "title", + "type": "string", + "single": true + }, + { + "title": "Description", + "name": "description", + "type": "string" + }, + { + "title": "Type", + "name": "type", + "type": "choice", + "choices": [ + "default", + "docs", + "minimal" + ], + "default": "minimal" + } + ] + }
\ No newline at end of file diff --git a/frontmatter.json b/frontmatter.json index cba4b52..8c4ad67 100644 --- a/frontmatter.json +++ b/frontmatter.json @@ -7,414 +7,7 @@ "frontMatter.taxonomy.alignFilename": true, "frontMatter.templates.enabled": true, "frontMatter.templates.folder": ".frontmatter/templates", - "frontMatter.taxonomy.contentTypes": [ - { - "name": "default", - "pageBundle": false, - "previewPath": null, - "fields": [ - { - "title": "Title", - "name": "title", - "type": "string", - "single": true - }, - { - "title": "Date", - "name": "date", - "type": "datetime", - "default": "{{now}}", - "isPublishDate": true - }, - { - "title": "Description", - "name": "description", - "type": "string" - }, - { - "title": "Draft", - "name": "draft", - "type": "draft" - }, - { - "title": "Tags", - "name": "tags", - "type": "tags" - }, - { - "title": "Icon", - "name": "icon", - "type": "string", - "single": true - }, - { - "title": "Type", - "name": "type", - "type": "choice", - "choices": [ - "default", - "docs", - "minimal" - ], - "default": "default" - }, - { - "title": "Metadata", - "name": "metadata", - "type": "string" - }, - { - "title": "Download", - "name": "download", - "type": "string", - "single": true - }, - { - "title": "Thumbnail", - "name": "thumbnail", - "type": "fields", - "fields": [ - { - "title": "URL", - "name": "url", - "type": "image" - }, - { - "title": "Author", - "name": "author", - "type": "string", - "single": true - }, - { - "title": "AuthorUrl", - "name": "authorUrl", - "type": "string" - }, - { - "title": "Origin", - "name": "origin", - "type": "string", - "single": true - }, - { - "title": "OriginUrl", - "name": "originUrl", - "type": "string" - } - ] - }, - { - "title": "Author", - "name": "author", - "type": "string", - "single": true - }, - { - "title": "Links", - "name": "navigationLinks", - "type": "list" - } - ] - }, - { - "name": "Docs", - "pageBundle": false, - "previewPath": null, - "fields": [ - { - "title": "Title", - "name": "title", - "type": "string", - "single": true - }, - { - "title": "Description", - "name": "description", - "type": "string" - }, - { - "title": "Metadata", - "name": "metadata", - "type": "string" - }, - { - "title": "Categories", - "name": "categories", - "type": "choice", - "choices": [ - "Persons", - "Evidence", - "Legal" - ] - }, - { - "title": "Type", - "name": "type", - "type": "choice", - "choices": [ - "default", - "docs", - "minimal" - ], - "default": "docs" - } - ] - }, - { - "name": "Minimal", - "pageBundle": false, - "previewPath": null, - "fields": [ - { - "title": "Title", - "name": "title", - "type": "string", - "single": true - }, - { - "title": "Description", - "name": "description", - "type": "string" - }, - { - "title": "Type", - "name": "type", - "type": "choice", - "choices": [ - "default", - "docs", - "minimal" - ], - "default": "minimal" - } - ] - } - ], - "frontMatter.content.pageFolders": [ - { - "title": "content", - "path": "[[workspace]]/content" - } - ], "frontMatter.framework.id": "hugo", "frontMatter.git.enabled": true, - "frontMatter.preview.host": "http://localhost:1313", - "frontMatter.content.snippets": { - "Image": { - "description": "Image Shortcode for Digital Asset Managers", - "body": "{{< image src=\"[[SRC_URL]]\" ratio=\"[[Ratio]]\" class=\"[[Class]]\" wrapper=\"[[ Wrapper]]\" >}}", - "fields": [ - { - "name": "SRC_URL", - "title": "SRC_URL", - "type": "string", - "single": true, - "default": "" - }, - { - "name": "Ratio", - "title": "Ratio", - "type": "string", - "single": true, - "default": "" - }, - { - "name": "Class", - "title": "Class", - "type": "string", - "single": true, - "default": "" - }, - { - "name": "Wrapper", - "title": "Wrapper", - "type": "string", - "single": true, - "default": "" - } - ], - "isMediaSnippet": true - }, - "Persona": { - "description": "Profile Card", - "body": "{{< persona thumbnail=\"[[Thumbnail]]\" title=\"{{title}}\" color=\"[[color]]\" >}}", - "isMediaSnippet": true, - "fields": [ - { - "name": "Thumbnail", - "title": "Thumbnail", - "type": "string", - "single": true, - "default": "" - }, - { - "name": "color", - "title": "color", - "type": "string", - "single": true, - "default": "" - } - ] - }, - "Link": { - "description": "Managed Link Insertion", - "body": "{{< link title=\"[[Title]]\" url=\"[[Url]]\" cue=[[true|false]] [[Link Name]] >}}", - "fields": [ - { - "name": "Title", - "title": "Title", - "type": "string", - "single": true, - "default": "" - }, - { - "name": "Url", - "title": "Url", - "type": "string", - "single": true, - "default": "" - }, - { - "name": "true|false", - "title": "true|false", - "type": "string", - "single": true, - "default": "" - }, - { - "name": "Link Name", - "title": "Link Name", - "type": "string", - "single": true, - "default": "" - } - ] - }, - "Docs": { - "description": "Show Contents of Toml", - "body": "{{< docs name=\"[[Section]]\" file=\"[[File Path]]\" id=[[docs-collapse-{X}]] >}}", - "fields": [ - { - "name": "Section", - "title": "Section", - "type": "string", - "single": true, - "default": "" - }, - { - "name": "File Path", - "title": "File Path", - "type": "string", - "single": true, - "default": "" - }, - { - "name": "docs-collapse-{X}", - "title": "docs-collapse-{X}", - "type": "string", - "single": true, - "default": "" - } - ] - }, - "File": { - "description": "Display Entire Contents of File", - "body": "{{< file path=[[File Path]] id=\"[[file-collapse-{x}]]\" >}}", - "fields": [ - { - "name": "File Path", - "title": "File Path", - "type": "string", - "single": true, - "default": "" - }, - { - "name": "file-collapse-{x}", - "title": "file-collapse-{x}", - "type": "string", - "single": true, - "default": "" - } - ] - }, - "Map": { - "description": "Inject a Map", - "body": "{{< map lat=[[Latitude]] long=[[Longitude]] popup=[[Display Text]] >}}", - "fields": [ - { - "name": "Latitude", - "title": "Latitude", - "type": "string", - "single": true, - "default": "" - }, - { - "name": "Longitude", - "title": "Longitude", - "type": "string", - "single": true, - "default": "" - }, - { - "name": "Display Text", - "title": "Display Text", - "type": "string", - "single": true, - "default": "" - } - ] - } - }, - "frontMatter.data.files": [ - { - "id": "timeline", - "title": "Timeline", - "file": "[[workspace]]/data/timeline.yml", - "fileType": "yaml", - "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" - } - } - } - } - ], - "frontMatter.data.folders": [ - { - "id": "authors", - "path": "[[workspace]]/data", - "singleEntry": false, - "enableFileCreation": true, - "fileType": "yaml", - "type": "data" - } - ] + "frontMatter.preview.host": "http://192.168.1.99:1313", }
\ No newline at end of file diff --git a/frontmatter.json.bak b/frontmatter.json.bak deleted file mode 100644 index 053a972..0000000 --- a/frontmatter.json.bak +++ /dev/null @@ -1,265 +0,0 @@ -{ - "$schema": "https://beta.frontmatter.codes/frontmatter.schema.json", - "frontMatter.git.enbled": true, - "frontMatter.content.wysiwyg": true, - "frontMatter.content.publicFolder": "assets/img", - "frontMatter.taxonomy.slugTemplate": "{{seoTitle}}", - "frontMatter.templates.enabled": true, - "frontMatter.templates.folder": ".frontmatter/templates", - "frontMatter.taxonomy.contentTypes": [ - { - "name": "default", - "pageBundle": false, - "previewPath": null, - "fields": [ - { - "title": "Title", - "name": "title", - "type": "string", - "single": true - }, - { - "title": "Date", - "name": "date", - "type": "datetime", - "default": "{{now}}", - "isPublishDate": true - }, - { - "title": "Description", - "name": "description", - "type": "string" - }, - { - "title": "Draft", - "name": "draft", - "type": "draft" - }, - { - "title": "Tags", - "name": "tags", - "type": "tags" - }, - { - "title": "Icon", - "name": "icon", - "type": "string", - "single": true - }, - { - "title": "Metadata", - "name": "metadata", - "type": "string" - }, - { - "title": "Download", - "name": "download", - "type": "string", - "single": true - }, - { - "title": "Thumbnail", - "name": "thumbnail", - "type": "fields", - "fields": [ - { - "title": "URL", - "name": "url", - "type": "image" - }, - { - "title": "Author", - "name": "author", - "type": "string", - "single": true - }, - { - "title": "AuthorUrl", - "name": "authorUrl", - "type": "string" - }, - { - "title": "Origin", - "name": "origin", - "type": "string", - "single": true - }, - { - "title": "OriginUrl", - "name": "originUrl", - "type": "string" - } - ] - }, - { - "title": "Author", - "name": "author", - "type": "string", - "single": true - }, - { - "title": "Links", - "name": "navigationLinks", - "type": "list" - } - ] - }, - { - "name": "Docs", - "pageBundle": false, - "previewPath": null, - "fields": [ - { - "title": "Title", - "name": "title", - "type": "string", - "single": true - }, - { - "title": "Description", - "name": "description", - "type": "string" - }, - { - "title": "Metadata", - "name": "metadata", - "type": "string" - }, - { - "title": "Categories", - "name": "categories", - "type": "choice", - "choices": ["Persons", "Evidence", "Legal"] - }, - { - "title": "Type", - "name": "type", - "type": "string", - "default": "docs", - "single": true - } - ] - }, - { - "name": "Minimal", - "pageBundle": false, - "previewPath": null, - "fields": [ - { - "title": "Title", - "name": "title", - "type": "string", - "single": true - }, - { - "title": "Description", - "name": "description", - "type": "string" - }, - { - "title": "Type", - "name": "type", - "type": "string", - "default": "minimal" - } - ] - } - ], - "frontMatter.content.pageFolders": [ - { - "title": "content", - "path": "[[workspace]]/content" - } - ], - "frontMatter.framework.id": "hugo", - "frontMatter.git.enabled": true, - "frontMatter.preview.host": "http://localhost:1313", - "frontMatter.content.snippets": { - "Image": { - "description": "Image Shortcode for Digital Asset Managers", - "body": "{{< image src=\"[[SRC_URL]]\" ratio=\"[[Ratio]]\" class=\"[[Class]]\" wrapper=\"[[ Wrapper]]\" >}}", - "fields": [ - { - "name": "SRC_URL", - "title": "SRC_URL", - "type": "string", - "single": true, - "default": "" - }, - { - "name": "Ratio", - "title": "Ratio", - "type": "string", - "single": true, - "default": "" - }, - { - "name": "Class", - "title": "Class", - "type": "string", - "single": true, - "default": "" - }, - { - "name": "Wrapper", - "title": "Wrapper", - "type": "string", - "single": true, - "default": "" - } - ] - } - }, - "frontMatter.data.files": [ - { - "id": "timeline", - "title": "Timeline", - "file": "[[workspace]]/data/timeline.yml", - "fileType": "yaml", - "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" - } - } - } - } - ], - "frontMatter.data.folders": [ - { - "id": "authors", - "path": "[[workspace]]/data", - "singleEntry": false, - "enableFileCreation": true, - "fileType": "yaml", - "type": "data" - } - ] -}
\ No newline at end of file diff --git a/hinode-template.code-workspace b/hinode-template.code-workspace index d32427b..96daee6 100644 --- a/hinode-template.code-workspace +++ b/hinode-template.code-workspace @@ -7,7 +7,8 @@ "settings": { "conventionalCommits.scopes": [ "content", - "frontmatter.json" + "frontmatter.json", + ".frontMatter" ] } }
\ No newline at end of file diff --git a/hugo_stats.json b/hugo_stats.json index 85b0fa5..a42aa70 100644 --- a/hugo_stats.json +++ b/hugo_stats.json @@ -1,7 +1,505 @@ { "htmlElements": { - "tags": null, - "classes": null, - "ids": null + "tags": [ + "a", + "annotation", + "blockquote", + "body", + "button", + "div", + "em", + "figcaption", + "figure", + "footer", + "form", + "h1", + "h2", + "h3", + "h4", + "h5", + "h6", + "head", + "hr", + "html", + "iframe", + "img", + "input", + "label", + "li", + "link", + "math", + "meta", + "mi", + "mn", + "mo", + "mrow", + "nav", + "noscript", + "ol", + "p", + "path", + "pre", + "script", + "semantics", + "small", + "span", + "strong", + "sup", + "svg", + "symbol", + "table", + "tbody", + "td", + "th", + "thead", + "time", + "title", + "tr", + "ul", + "use" + ], + "classes": [ + "active", + "align-items-center", + "align-middle", + "align-self-center", + "anchor", + "badge", + "ball", + "bg-body", + "bg-body-tertiary", + "bg-primary", + "bg-secondary", + "blockquote-alert", + "blockquote-alert-heading", + "blockquote-alert-note", + "blockquote-alert-warning", + "border", + "border-0", + "border-top", + "bottom-0", + "bottom-bar", + "breadcrumb", + "breadcrumb-item", + "btn", + "btn-close", + "btn-info", + "btn-lg", + "btn-light", + "btn-outline-primary", + "btn-outline-secondary", + "btn-primary", + "btn-sm", + "btn-social", + "card", + "card-body", + "card-body-link", + "card-img-bg", + "card-img-top", + "card-img-wrap", + "card-text", + "card-title", + "card-zoom", + "checkbox", + "chroma", + "col", + "col-10", + "col-12", + "col-2", + "col-3", + "col-4", + "col-6", + "col-9", + "col-lg-2", + "col-lg-8", + "col-md-2", + "col-md-3", + "col-md-4", + "col-md-6", + "col-md-8", + "col-md-9", + "col-sm-12", + "col-sm-3", + "collapse", + "collapsed", + "container", + "container-fluid", + "container-xxl", + "d-block", + "d-flex", + "d-grid", + "d-lg-block", + "d-md-block", + "d-md-none", + "d-none", + "d-none-dark", + "d-none-light", + "d-sm-block", + "d-sm-none", + "data-table", + "display-1", + "display-4", + "dropdown", + "dropdown-item", + "dropdown-menu", + "dropdown-toggle", + "emphasis", + "end-0", + "fa", + "fa-10x", + "fa-angle-left", + "fa-angle-right", + "fa-angles-left", + "fa-angles-right", + "fa-arrow-left", + "fa-arrow-right", + "fa-book-open", + "fa-circle-info", + "fa-ellipsis", + "fa-face-frown", + "fa-facebook", + "fa-fluid", + "fa-fw", + "fa-globe", + "fa-heart", + "fa-house", + "fa-link", + "fa-linkedin", + "fa-moon", + "fa-rocket", + "fa-share-nodes", + "fa-sort", + "fa-sun", + "fa-triangle-exclamation", + "fa-whatsapp", + "fa-wrapper", + "fa-x-twitter", + "fab", + "fas", + "figure-caption", + "fixed-top", + "flex-column", + "flex-fill", + "footer", + "footer-muted", + "footnote-backref", + "footnote-ref", + "footnotes", + "form-control", + "fs-3", + "fs-5", + "fs-6", + "fs-lg-5", + "fs-md-5", + "fullcover", + "fullscreen", + "fw-30", + "fw-bold", + "fw-medium", + "g-0", + "g-1", + "g-4", + "gap-1", + "gap-2", + "gradient-featured", + "h-100", + "h6", + "heading", + "highlight", + "hstack", + "img-fluid", + "img-wrap", + "invisible", + "is-search", + "justify-content-between", + "justify-content-center", + "justify-content-end", + "justify-content-start", + "katex", + "label", + "lead", + "link-bg-footer", + "link-primary", + "link-success", + "link-warning", + "m-auto", + "main-content", + "main-nav-toggler", + "mb-0", + "mb-3", + "mb-5", + "mb-lg-5", + "me-auto", + "mermaid", + "middle-bar", + "min-vh-100", + "mode-switch", + "ms-1", + "ms-auto", + "ms-md-3", + "mt-2", + "mt-3", + "mt-4", + "mt-5", + "mt-auto", + "mt-md-0", + "mx-auto", + "mx-md-0", + "my-2", + "my-auto", + "my-md-0", + "nav-item", + "nav-link", + "navbar", + "navbar-brand", + "navbar-collapse", + "navbar-container", + "navbar-expand-md", + "navbar-fixed-top", + "navbar-mode-selector", + "navbar-nav", + "navbar-nav-scroll", + "navbar-toggler", + "next", + "no-js", + "order-first", + "p-0", + "p-1", + "p-2", + "p-3", + "p-4", + "p-auto", + "page-item", + "page-link", + "pagination", + "pagination-terse", + "pb-2", + "pb-3", + "pb-4", + "pb-5", + "pe-5", + "persona", + "position-absolute", + "position-fixed", + "position-relative", + "post-date", + "previous", + "ps-1", + "ps-3", + "pt-2", + "pt-3", + "pt-5", + "pt-md-0", + "pt-md-3", + "ptw-3", + "ptw-5", + "ptw-lg-5", + "ptw-sm-4", + "px-3", + "px-xxl-0", + "py-1", + "py-3", + "py-5", + "rounded", + "rounded-5", + "rounded-pill", + "row", + "row-cols-1", + "row-cols-2", + "row-cols-lg-3", + "row-cols-md-2", + "row-cols-md-3", + "row-cols-sm-1", + "row-cols-sm-2", + "row-cols-sm-3", + "search", + "search-input", + "search-suggestions", + "shadow", + "sidebar-overflow", + "small", + "start-0", + "start-50", + "sticky-top", + "stretched-link", + "svg-inline--fa", + "syntax-highlight", + "table", + "table-responsive", + "tag-link", + "text-bg-info", + "text-bg-primary", + "text-bg-secondary", + "text-bg-success", + "text-bg-warning", + "text-body", + "text-body-secondary", + "text-break", + "text-center", + "text-decoration-none", + "text-end", + "text-info", + "text-muted", + "text-right", + "text-secondary", + "text-start", + "text-uppercase", + "timeline", + "timeline-bg-dark", + "timeline-connector-end", + "timeline-connector-start", + "timeline-description-text-end", + "timeline-description-text-start", + "timeline-dot", + "timeline-info", + "timeline-panel-end", + "timeline-panel-start", + "timeline-primary", + "timeline-semi-circle-end", + "timeline-semi-circle-start", + "timeline-sm", + "timeline-success", + "timeline-warning", + "toast", + "toast-body", + "toast-container", + "toast-header", + "toc", + "toc-button", + "toc-panel", + "toc-sidebar", + "toggler-icon", + "top-25", + "top-50", + "top-bar", + "translate-middle", + "translate-middle-y", + "video-embedded", + "w-100", + "w-25" + ], + "ids": [ + "TableOfContents", + "a-junkyard-you-say", + "about-us", + "analysis", + "arent-you-afraid-of-being-sued", + "basic-logic-how-unclaimed-potential-revenue-affects-you", + "begin", + "blacklabeled-in-acquiring-legal-counsel", + "btn-webshare", + "business-transactions", + "changes-to-this-privacy-policy", + "childrens-privacy", + "closing", + "collecting-and-using-your-personal-data", + "consent", + "contact-toast", + "contact-us", + "definitions", + "delete-your-personal-data", + "dessimation-of-antebellum-homestead", + "diagram-explanation", + "diagram-legend", + "disclosure-of-your-personal-data", + "documented-acts-of-harassment", + "email-table-of-contents", + "entity-relationship-diagram", + "evidence", + "evidenciary-artifacts", + "fa-face-frown", + "fab-facebook", + "fab-linkedin", + "fab-whatsapp", + "fab-x-twitter", + "fabricator-of-allegations", + "fas-angle-left", + "fas-angle-right", + "fas-angles-left", + "fas-angles-right", + "fas-arrow-left", + "fas-arrow-right", + "fas-book-open", + "fas-circle-info", + "fas-ellipsis", + "fas-globe", + "fas-heart", + "fas-house", + "fas-link", + "fas-moon", + "fas-rocket", + "fas-share-nodes", + "fas-sort", + "fas-sun", + "fas-triangle-exclamation", + "fn:1", + "fnref1:1", + "fnref2:1", + "fnref:1", + "glare", + "historical-precedence", + "how-much-money", + "in-regard-to-corruptlamarcom", + "interpretation", + "interpretation-and-definitions", + "intro", + "is-the-county-honoring-any-statute-codified-in-law", + "it-was-made-perfectly-clear-they-were-invested-in-covering-it-up", + "kardun-homes-subdivision", + "known-smear-pusher", + "law-enforcement", + "legal", + "letter-to-the-editor-of-the-barnesville-dispatchhttpsbarnesvilledispatchcomindex377htm", + "line-descriptors", + "line-types", + "links-to-other-websites", + "navbar-0-collapse", + "navbar-mode", + "navbar-mode-checkbox", + "neighbors-stalking", + "news-media", + "other-legal-requirements", + "otterai-speech--file-index", + "personal-data", + "persons", + "posts", + "privacy-policy", + "property-involvement", + "protected-by-the-county", + "retention-of-your-personal-data", + "second-weekend-of-stalking", + "security-of-your-personal-data", + "shanes-folly", + "site-disclaimer", + "stalking-the-first-weekend", + "stalking1", + "stalking2", + "stalking31", + "stalking32", + "the-analogy", + "the-corruption-was-a-matter-of-fact", + "the-countys-track-record-of-sacrificing-life-for-profit", + "the-curious-case-of-chief-matthews-private-road", + "the-danger-comes-from-the-fluids", + "the-reality", + "this-is-the-countys-policy", + "to-start-with", + "toast-container", + "toast-copied-code-message", + "toast-message-email-4", + "toc-collapse", + "tracking-technologies-and-cookies", + "transfer-of-your-personal-data", + "types-of-data-collected", + "update", + "usage-data", + "use-of-your-personal-data", + "values", + "video", + "what-is-it", + "what-type-of-junkyard", + "who-knows-about-it", + "why-did-we-choose-corruptlamarcom" + ] } } |
