add tips collection to decap

This commit is contained in:
KemoNine 2023-03-19 12:54:26 -04:00
parent 18adc11a64
commit d7647cce35

View file

@ -39,3 +39,34 @@ collections:
summary: '{{fields.tag}}' summary: '{{fields.tag}}'
field: {label: Tag, name: tag, widget: string} field: {label: Tag, name: tag, widget: string}
- {label: "Body", name: "body", widget: "markdown", required: true} - {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}
- label: "Categories"
name: "categories"
widget: "list"
allow_add: true
required: true
summary: '{{fields.category}}'
field: {label: Category, name: category, widget: string}
default: ["tips"]
- label: "Tags"
name: "tags"
widget: "list"
allow_add: true
required: true
summary: '{{fields.tag}}'
field: {label: Tag, name: tag, widget: string}
- {label: "Body", name: "body", widget: "markdown", required: true}