diff options
Diffstat (limited to '.frontmatter/config/content/snippets/card.json')
| -rw-r--r-- | .frontmatter/config/content/snippets/card.json | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/.frontmatter/config/content/snippets/card.json b/.frontmatter/config/content/snippets/card.json new file mode 100644 index 0000000..df007e4 --- /dev/null +++ b/.frontmatter/config/content/snippets/card.json @@ -0,0 +1,56 @@ +{ + "$schema": "https://beta.frontmatter.codes/config/content.snippets.schema.json", + "title": "Card", + "description": "Card snippet for bootstrap card generation", + "body": [ + "{{< card align=\"[[align]]\" body=\"none\" button=true class=\"[[class]]\" header=\"none\" footer=\"none\" icon=\"[[icon]]\" orientation=\"[[orientation]]\" title=[[title]] wrapper=\"[[wrapper]]\" thumbnail=\"[[thumbnail]]\" path=\"[[path]]\" >}}", + "[[content]]", + "{{< /card >}}" + ], + "fields": [ + { + "title": "Align", + "name": "align", + "type": "string" + }, + { + "title": "Class", + "name": "class", + "type": "string", + "default": "" + }, + { + "title": "Icon", + "name": "icon", + "type": "string" + }, + { + "title": "Orientation", + "name": "orientation", + "type": "string", + "default": "stacked" + }, + { + "title": "Title", + "name": "title", + "type": "string" + }, + { + "title": "Wrapper", + "name": "wrapper", + "type": "string", + "default": "" + }, + { + "title": "Thumbnail", + "name": "thumbnail", + "type": "string" + }, + { + "title": "Path", + "name": "path", + "type": "string" + } + ], + "isMediaSnippet": false +} |
