diff --git a/admin/config.yml b/admin/config.yml index 4c17b5f..714c352 100644 --- a/admin/config.yml +++ b/admin/config.yml @@ -6,8 +6,15 @@ backend: media_folder: "assets/uploads" collections: - - name: "blog" - label: "Blog" - folder: "_posts/" - fields: - - { name: Title } + - name: "blog" # Used in routes, e.g., /admin/collections/blog + label: "Blog" # Used in the UI + folder: "_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 + fields: # The fields for each document, usually in front matter + - { label: "Layout", name: "layout", widget: "hidden", default: "blog" } + - { label: "Title", name: "title", widget: "string" } + - { label: "Publish Date", name: "date", widget: "datetime" } + - { label: "Featured Image", name: "thumbnail", widget: "image" } + - { label: "Rating (scale of 1-5)", name: "rating", widget: "number" } + - { label: "Body", name: "body", widget: "markdown" }