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

107 lines
4 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: "publishDate", widget: "datetime", date_format: 'YYYY-MM-DD', time_format: false, required: true}
- {label: "Last Modified", name: "lastMod", 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"
allow_add: true
required: true
2023-03-19 16:43:48 +00:00
summary: '{{fields.tag}}'
field: {label: Tag, name: tag, widget: string}
- label: "Content"
name: "body"
widget: "markdown"
required: true
default: >-
## Changelog
2023-03-19 18:48:12 +00:00
{{< back_to_top >}}
{{< changelog >}}
{{< change 2000-12-30 "change 1" >}}
{{< change 2000-12-31 "change 2" >}}
{{< /changelog >}}
{{< end_section >}}
2023-03-19 16:54:26 +00:00
- 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}
2023-03-19 17:07:38 +00:00
- {label: "Publish Date", name: "publishDate", widget: "datetime", date_format: 'YYYY-MM-DD', time_format: false, required: true}
- {label: "Last Modified", name: "lastMod", widget: "datetime", date_format: 'YYYY-MM-DD', time_format: false, required: true}
2023-03-19 16:54:26 +00:00
- {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: "Content"
name: "body"
widget: "markdown"
required: true
default: >-
## Changelog
2023-03-19 18:48:12 +00:00
{{< back_to_top >}}
{{< changelog >}}
{{< change 2000-12-30 "change 1" >}}
{{< change 2000-12-31 "change 2" >}}
{{< /changelog >}}
{{< end_section >}}