Skip to content

Commit be660b7

Browse files
committed
feat: frontmatter cms
1 parent 09e9cb9 commit be660b7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+2322
-12
lines changed

.frontmatter/database/mediaDb.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

.frontmatter/starlight/aside.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"$schema": "https://beta.frontmatter.codes/frontmatter.schema.json",
3+
"frontMatter.content.snippets": {
4+
"Aside": {
5+
"description": "Create an admonitions or callout",
6+
"body": [":::<<type>><<#label>>[<<label>>]<</label>>", "<<&content>>", ":::"],
7+
"openingTags": "<<",
8+
"closingTags": ">>",
9+
"fields": [
10+
{
11+
"name": "type",
12+
"title": "type",
13+
"type": "choice",
14+
"choices": ["note", "tip", "caution", "danger"],
15+
"default": "note"
16+
},
17+
{
18+
"name": "label",
19+
"title": "label",
20+
"type": "string",
21+
"single": true
22+
},
23+
{
24+
"name": "content",
25+
"title": "content",
26+
"type": "string",
27+
"single": false,
28+
"default": "FM_SELECTED_TEXT"
29+
}
30+
]
31+
}
32+
}
33+
}

0 commit comments

Comments
 (0)