summaryrefslogtreecommitdiffstats
path: root/.frontmatter/config/content
diff options
context:
space:
mode:
authoranoduck <9925396+anoduck@users.noreply.github.com>2024-11-21 06:15:15 -0500
committeranoduck <9925396+anoduck@users.noreply.github.com>2024-11-21 06:15:15 -0500
commit4530da3162b4fef7103871759e8d17c3f8a2758b (patch)
treea92cd990e328943dd663715f3ba076242b314400 /.frontmatter/config/content
parent6892666778ef20e31eea669ea5932f759626fdf0 (diff)
docs: :memo: Removed off subject otter logs
Updated packages, Removed off subject otter logs.
Diffstat (limited to '.frontmatter/config/content')
-rw-r--r--.frontmatter/config/content/pagefolders/docs.json3
-rw-r--r--.frontmatter/config/content/snippets/collapse.json47
2 files changed, 49 insertions, 1 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