mirror of
https://github.com/CaiJimmy/hugo-theme-stack.git
synced 2025-04-28 19:43:31 +08:00
18 lines
538 B
YAML
18 lines
538 B
YAML
backend:
|
|
name: git-gateway
|
|
branch: master # or main if you're using a different default branch
|
|
|
|
media_folder: "static/images/uploads" # Media files will be stored here
|
|
public_folder: "/images/uploads"
|
|
|
|
collections:
|
|
- name: "blog"
|
|
label: "Blog"
|
|
folder: "content/blog"
|
|
create: true
|
|
slug: "{{year}}-{{month}}-{{day}}-{{slug}}"
|
|
fields:
|
|
- { label: "Title", name: "title", widget: "string" }
|
|
- { label: "Date", name: "date", widget: "datetime" }
|
|
- { label: "Body", name: "body", widget: "markdown" }
|