rickvanlieshout.com/static/admin/config.yml
Robert Veitch 308b40cf90 Add support for Netlify CMS preview_path
preview_path allows for UI linkage between the Netlify CMS UI
and the associated preview deploy build. Also adds a commented
out publish_mode configuration to enable the UI authoring flow,
which continues to default to publish direct to master.
2019-12-11 22:36:14 -06:00

40 lines
1.4 KiB
YAML

backend:
name: git-gateway
branch: master
media_folder: "static/media"
public_folder: "/media"
# Uncomment to leverage Netlify CMS UI authoring flow
# see: https://www.netlifycms.org/docs/configuration-options/#publish-mode
# publish_mode: editorial_workflow
collections:
- name: "posts"
label: "Posts"
folder: "content/posts"
create: true
slug: "{{year}}-{{month}}-{{day}}-{{slug}}"
preview_path: "posts/{{fields.slug}}"
fields:
- {label: "Template", name: "template", widget: "hidden", default: "post"}
- {label: "Title", name: "title", widget: "string"}
- {label: "Slug", name: "slug", widget: "string"}
- {label: "Draft", name: "draft", widget: "boolean", default: true}
- {label: "Publish Date", name: "date", widget: "datetime"}
- {label: "Description", name: "description", widget: "text"}
- {label: "Category", name: "category", widget: "string"}
- {label: "Body", name: "body", widget: "markdown"}
- {label: "Tags", name: "tags", widget: "list"}
- name: "pages"
label: "Pages"
folder: "content/pages"
create: true
slug: "{{slug}}"
fields:
- {label: "Template", name: "template", widget: "hidden", default: "page"}
- {label: "Title", name: "title", widget: "string"}
- {label: "Slug", name: "slug", widget: "string"}
- {label: "Draft", name: "draft", widget: "boolean", default: true}
- {label: "Body", name: "body", widget: "markdown"}