diff options
| author | anoduck <11767-anoduck@users.noreply.gitgud.io> | 2024-10-08 15:05:37 -0400 |
|---|---|---|
| committer | anoduck <11767-anoduck@users.noreply.gitgud.io> | 2024-10-08 15:05:37 -0400 |
| commit | 71d350a4786e1ea2ebd84f14665e33d1e8bb3387 (patch) | |
| tree | 4a1974e44d48d0914c7e4a6cf659a9a5b0c4f2a9 /.frontmatter | |
| parent | ecc34cd1fde9b4c643474b3783aa001002b91ab9 (diff) | |
ci(.frontMatter): :construction_worker: previewPath and types
Defined previewPath and contentTypes for pageFolders
Diffstat (limited to '.frontmatter')
6 files changed, 32 insertions, 6 deletions
diff --git a/.frontmatter/config/content/pagefolders/content.json b/.frontmatter/config/content/pagefolders/content.json index b3a8201..a5f8455 100644 --- a/.frontmatter/config/content/pagefolders/content.json +++ b/.frontmatter/config/content/pagefolders/content.json @@ -1,4 +1,9 @@ { "title": "content", - "path": "[[workspace]]/content" + "path": "[[workspace]]/content", + "excludeSubdir": true, + "previewPath": "", + "contentTypes": [ + "default" + ] }
\ No newline at end of file diff --git a/.frontmatter/config/content/pagefolders/evidence.json b/.frontmatter/config/content/pagefolders/evidence.json index f7e06d0..8c70f28 100644 --- a/.frontmatter/config/content/pagefolders/evidence.json +++ b/.frontmatter/config/content/pagefolders/evidence.json @@ -1,4 +1,8 @@ { "title": "Evidence", - "path": "[[workspace]]/content/evidence" + "path": "[[workspace]]/content/evidence", + "previewPath": "evidence", + "contentTypes": [ + "docs" + ] }
\ No newline at end of file diff --git a/.frontmatter/config/content/pagefolders/legal.json b/.frontmatter/config/content/pagefolders/legal.json index 8a6a43b..7c17fcd 100644 --- a/.frontmatter/config/content/pagefolders/legal.json +++ b/.frontmatter/config/content/pagefolders/legal.json @@ -1,4 +1,9 @@ { "title": "Legal", - "path": "[[workspace]]/content/legal" + "path": "[[workspace]]/content/legal", + "previewPath": "legal", + "contentTypes": [ + "docs", + "default" + ] }
\ No newline at end of file diff --git a/.frontmatter/config/content/pagefolders/persons.json b/.frontmatter/config/content/pagefolders/persons.json index e83695a..93e9635 100644 --- a/.frontmatter/config/content/pagefolders/persons.json +++ b/.frontmatter/config/content/pagefolders/persons.json @@ -1,4 +1,8 @@ { "title": "Persons", - "path": "[[workspace]]/content/persons" + "path": "[[workspace]]/content/persons", + "previewPath": "persons", + "contentTypes": [ + "docs" + ] }
\ No newline at end of file diff --git a/.frontmatter/config/content/pagefolders/posts.json b/.frontmatter/config/content/pagefolders/posts.json index 2df110b..0327d7f 100644 --- a/.frontmatter/config/content/pagefolders/posts.json +++ b/.frontmatter/config/content/pagefolders/posts.json @@ -1,4 +1,8 @@ { "title": "Posts", - "path": "[[workspace]]/content/posts" + "path": "[[workspace]]/content/posts", + "previewPath": "posts", + "contentTypes": [ + "minimal" + ] }
\ No newline at end of file diff --git a/.frontmatter/config/content/pagefolders/video.json b/.frontmatter/config/content/pagefolders/video.json index 9f00748..dc1e565 100644 --- a/.frontmatter/config/content/pagefolders/video.json +++ b/.frontmatter/config/content/pagefolders/video.json @@ -1,4 +1,8 @@ { "title": "Video", - "path": "[[workspace]]/content/video" + "path": "[[workspace]]/content/video", + "previewPath": "video", + "contentTypes": [ + "minimal" + ] }
\ No newline at end of file |
