accessible.tips/themes/hugo-xmin/static/admin/desktop/config.yml

51 lines
1.9 KiB
YAML
Raw Normal View History

site_url: https://kb.accessible.tips
display_url: https://kb.accessible.tips
media_folder: "static/uploads"
public_folder: "/uploads"
search: false
backend:
name: git-gateway
branch: main
collections:
- name: "blog" # Used in routes, e.g., /admin/collections/blog
label: "Blog" # Used in the UI
folder: "content/posts" # The path to the folder where the documents are stored
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
show_preview_links: true
preview_path: "posts/{{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: false
allow_delete: false
collapsed: true
default:
- 'blog'
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}