diff options
| author | Anoduck, The Anonymous Duck <9925396+anoduck@users.noreply.github.com> | 2025-03-08 01:34:48 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-08 01:34:48 +0000 |
| commit | 8f23027ad1182c8ba9c813a308ace4404a9dfe07 (patch) | |
| tree | 2f2622bc5a18b77e4be5b7078c9a31a8af3d2d76 /.frontmatter/config/content/snippets/profile.json | |
| parent | 14db927174d6bc3d8c0745be5971f80c2a154fd1 (diff) | |
| parent | 6ddbeaac0d9cf708980b3288c445586b5f49b65b (diff) | |
Merge pull request #83 from anoduck/develop
Develop
Diffstat (limited to '.frontmatter/config/content/snippets/profile.json')
| -rw-r--r-- | .frontmatter/config/content/snippets/profile.json | 99 |
1 files changed, 99 insertions, 0 deletions
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 |
