diff options
Diffstat (limited to 'frontmatter.json.bak')
| -rw-r--r-- | frontmatter.json.bak | 265 |
1 files changed, 265 insertions, 0 deletions
diff --git a/frontmatter.json.bak b/frontmatter.json.bak new file mode 100644 index 0000000..053a972 --- /dev/null +++ b/frontmatter.json.bak @@ -0,0 +1,265 @@ +{ + "$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 |
