35 lines
1.5 KiB
YAML
35 lines
1.5 KiB
YAML
# See https://github.com/netlify/netlify-cms/blob/master/example/config.yml
|
|
backend:
|
|
name: git-gateway
|
|
branch: netlify-cms # Branch to update (optional; defaults to master)
|
|
|
|
media_folder: "public/images/uploads" # Media files will be stored in the repo under static/images/uploads
|
|
public_folder: "/images/uploads" # The src attribute for uploaded media will begin with /images/uploads
|
|
|
|
collections: # A list of collections the CMS should be able to edit
|
|
- name: "pages"
|
|
label: "Pages"
|
|
files:
|
|
- file: "content/pages/home.json"
|
|
label: "Home Page"
|
|
name: "home-page"
|
|
fields:
|
|
- {label: Title, name: title, widget: string}
|
|
- {label: Subtitle, name: subtitle, widget: string}
|
|
- {label: Body, name: body, widget: markdown}
|
|
- file: "content/pages/about.json"
|
|
label: "About Page"
|
|
name: "about-page"
|
|
fields:
|
|
- {label: Title, name: title, widget: string}
|
|
- {label: Subtitle, name: subtitle, widget: string}
|
|
- {label: Body, name: body, widget: markdown}
|
|
- {label: Section 1, name: section1, widget: markdown}
|
|
- {label: Section 2, name: section2, widget: markdown}
|
|
- file: "content/pages/contact.json"
|
|
label: "Contact Page"
|
|
name: "contact-page"
|
|
fields:
|
|
- {label: Title, name: title, widget: string}
|
|
- {label: Subtitle, name: subtitle, widget: string}
|
|
- {label: Body, name: body, widget: markdown}
|