hugo-theme-stack/static/admin/config.yaml
2024-08-12 00:18:02 +05:30

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" }