add static cms tips collection

This commit is contained in:
KemoNine 2023-03-19 12:57:54 -04:00
parent 575b668553
commit 4cf54c1e53

View file

@ -48,3 +48,40 @@ collections:
label: Tag
widget: string
- {label: "Body", name: "body", widget: "markdown", required: true}
- name: "tips" # Used in routes, e.g., /admin/collections/blog
label: "Tips" # Used in the UI
folder: "content/tips" # The path to the folder where the documents are stored
create: true # Allow users to create new documents in this collection
slug: "{{slug}}" # Filename template, e.g., YYYY-MM-DD-title.md
show_preview_links: true
preview_path: "tips/{{slug}}"
fields: # The fields for each document, usually in front matter
- {label: "Layout", name: "layout", widget: "hidden", default: "post", required: true}
- {label: "Title", name: "title", widget: "string", required: true}
- {label: "Author", name: "author", widget: "string", required: true}
- {label: "Publish Date", name: "pubDate", widget: "datetime", date_format: 'yyyy-MM-dd', time_format: false, required: true}
- {label: "Last Modified", name: "modDate", widget: "datetime", date_format: 'yyyy-MM-dd', time_format: false, required: true}
- {label: "Show TOC?", name: "toc", widget: "boolean", default: true}
- {label: "Draft?", name: "draft", widget: "boolean", default: true}
- name: categories
label: Categories
widget: list
allow_add: true
allow_delete: true
collapsed: true
default:
- 'tips'
fields:
- name: category
label: Category
widget: string
- name: tags
label: Tags
widget: list
required: true
collapsed: false
fields:
- name: tag
label: Tag
widget: string
- {label: "Body", name: "body", widget: "markdown", required: true}