2023-03-19 14:36:01 +00:00
|
|
|
site_url: https://kb.accessible.tips
|
|
|
|
display_url: https://kb.accessible.tips
|
|
|
|
|
2023-03-18 17:09:33 +00:00
|
|
|
media_folder: "static/uploads"
|
|
|
|
public_folder: "/uploads"
|
2023-03-19 14:36:01 +00:00
|
|
|
|
|
|
|
search: false
|
|
|
|
|
2023-03-18 17:09:33 +00:00
|
|
|
backend:
|
|
|
|
name: git-gateway
|
|
|
|
branch: main
|
2023-03-19 14:36:01 +00:00
|
|
|
|
2023-03-18 17:09:33 +00:00
|
|
|
collections:
|
|
|
|
- name: "blog" # Used in routes, e.g., /admin/collections/blog
|
|
|
|
label: "Blog" # Used in the UI
|
2023-03-19 14:36:01 +00:00
|
|
|
folder: "content/posts" # The path to the folder where the documents are stored
|
2023-03-18 17:09:33 +00:00
|
|
|
create: true # Allow users to create new documents in this collection
|
|
|
|
slug: "{{year}}-{{month}}-{{day}}-{{slug}}" # Filename template, e.g., YYYY-MM-DD-title.md
|
2023-03-19 14:36:01 +00:00
|
|
|
show_preview_links: true
|
|
|
|
preview_path: "posts/{{slug}}"
|
2023-03-18 17:09:33 +00:00
|
|
|
fields: # The fields for each document, usually in front matter
|
2023-03-19 14:36:01 +00:00
|
|
|
- {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: false
|
|
|
|
default: ["blog"]
|
|
|
|
- label: "Tags"
|
|
|
|
name: "tags"
|
|
|
|
widget: "list"
|
2023-03-19 16:33:12 +00:00
|
|
|
allow_add: true
|
2023-03-19 14:36:01 +00:00
|
|
|
required: true
|
|
|
|
- {label: "Body", name: "body", widget: "markdown", required: true}
|