From 6458d9da064d11ef97b47897d6417286da2bbe91 Mon Sep 17 00:00:00 2001 From: anoduck <9925396+anoduck@users.noreply.github.com> Date: Sun, 2 Mar 2025 08:29:56 -0500 Subject: =?UTF-8?q?chore:=20=F0=9F=A4=96=20Pushing=20for=20remote=20access?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Pushing so it can later be accessed remotely. --- .frontmatter/config/content/snippets/profile.json | 99 +++++++++++++++++++++++ 1 file changed, 99 insertions(+) create mode 100644 .frontmatter/config/content/snippets/profile.json (limited to '.frontmatter/config/content/snippets') diff --git a/.frontmatter/config/content/snippets/profile.json b/.frontmatter/config/content/snippets/profile.json new file mode 100644 index 0000000..ab30872 --- /dev/null +++ b/.frontmatter/config/content/snippets/profile.json @@ -0,0 +1,99 @@ +{ + "$schema": "https://beta.frontmatter.codes/config/content.snippets.schema.json", + "title": "Profile page", + "description": "Profile Content Page", + "body": [ + "{{< persona thumbnail=\"[[Thumbnail]]\" title=\"{{title}}\" color=\"[[color]]\" >}}", + "Name: [[Name]]", + "Occupation: [[Occupation]]", + "Position: [[Position]]", + "Affiliations: [[Affiliations]]", + "Relations: [[Relations]]", + "POL Index: [[POL]]", + "Means: [[Means]]", + "Motive: [[Motive]]", + "Opportunity: [[Opportunity]]", + "Bio: [[Bio]]", + "{{< /persona >}}" + ], + "fields": [ + { + "name": "Title", + "title": "Title", + "type": "string", + "single": true, + "default": "'{{ replace .File.ContentBaseName `-` ` ` | title }}'" + }, + { + "name": "Thumbnail", + "title": "Thumbnail", + "type": "string", + "single": true, + "default": "/img/logo.png" + }, + { + "name": "color", + "title": "color", + "type": "string", + "single": true, + "default": "Primary" + }, + { + "name": "Name", + "title": "Name", + "type": "string", + "single": true + }, + { + "name": "Occupation", + "title": "Occupation", + "type": "string", + "single": true + }, + { + "name": "Position", + "title": "Position", + "type": "string", + "single": true + }, + { + "name": "Affiliations", + "title": "Affiliations", + "type": "string", + "single": false + }, + { + "name": "Relations", + "title": "Relations", + "type": "string", + "single": false + }, + { + "name": "POL", + "title": "POL Index", + "type": "string", + "single": true + }, + { + "name": "Means", + "title": "Means", + "type": "string", + "single": false + }, + { + "name": "Motive", + "title": "Motive", + "type": "string", + "single": false + }, + { + "name": "Opportunity", + "title": "Opportunity", + "type": "string", + "single": false + } + ], + "isMediaSnippet": false, + "openingTags": "[[", + "closingTags": "]]" +} \ No newline at end of file -- cgit v1.2.3 From 8c72811789f2d71c2b7863afb961fcdcd7898c47 Mon Sep 17 00:00:00 2001 From: anoduck <9925396+anoduck@users.noreply.github.com> Date: Fri, 7 Mar 2025 20:30:09 -0500 Subject: Created News and Docs folders --- .../config/content/snippets/accordian.json | 72 ++++++++++++++++++++++ .frontmatter/config/content/snippets/image.json | 2 +- 2 files changed, 73 insertions(+), 1 deletion(-) create mode 100644 .frontmatter/config/content/snippets/accordian.json (limited to '.frontmatter/config/content/snippets') diff --git a/.frontmatter/config/content/snippets/accordian.json b/.frontmatter/config/content/snippets/accordian.json new file mode 100644 index 0000000..84e6d73 --- /dev/null +++ b/.frontmatter/config/content/snippets/accordian.json @@ -0,0 +1,72 @@ +{ + "$schema": "https://frontmatter.codes/config/content.snippets.schema.json", + "title": "Accordion", + "description": "Accordion Element", + "body": [ + "{{< accordion id=[[id]] >}}", + "{{< accordion-item header=[[header1]] show=true >}}", + "[[content1]]", + "{{< /accordion-item >}}", + "{{< accordion-item header=[[header2]] >}}", + "[[content2]]", + "{{< /accordion-item >}}", + "{{< accordion-item header=[[header3]] >}}", + "[[content3]]", + "{{< /accordion-item >}}", + "{{< /accordion >}}" + ], + "isMediaSnippet": false, + "openingTags": "[[", + "closingTags": "]]", + "fields": [ + { + "title": "Tag Id", + "name": "id", + "type": "string", + "single": true, + "default": "" + }, + { + "title": "Header 1", + "name": "header1", + "type": "string", + "single": true, + "default": "" + }, + { + "title": "Header 2", + "name": "header2", + "type": "string", + "single": true, + "default": "" + }, + { + "title": "Header 3", + "name": "header3", + "type": "string", + "single": true, + "default": "" + }, + { + "title": "Content 1", + "name": "content1", + "type": "string", + "single": true, + "default": "" + }, + { + "title": "Content 2", + "name": "content2", + "type": "string", + "single": true, + "default": "" + }, + { + "title": "Content 3", + "name": "content3", + "type": "string", + "single": true, + "default": "" + } + ] +} \ No newline at end of file diff --git a/.frontmatter/config/content/snippets/image.json b/.frontmatter/config/content/snippets/image.json index 7e9db4f..fb2e6fe 100644 --- a/.frontmatter/config/content/snippets/image.json +++ b/.frontmatter/config/content/snippets/image.json @@ -33,5 +33,5 @@ "default": "" } ], - "isMediaSnippet": true + "isMediaSnippet": false } \ No newline at end of file -- cgit v1.2.3