aboutsummaryrefslogtreecommitdiffstats
path: root/site/static/admin/config.yml
blob: 4f6fe4a94fd698591098ba3fe5db8260a6547300 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
backend:
  name: github
  repo: darindimitroff/netlify-cms-template # Path to your Github repository
  branch: master # Branch to update (master by default)

media_folder: "dist/img" # Folder where user uploaded files should go
public_folder: "dist" # CMS now knows 'source' is the public folder and will strip this from the path

collections: # A list of collections the CMS should be able to edit
  - name: "post" # Used in routes, ie.: /admin/collections/:slug/edit
    label: "Post" # Used in the UI, ie.: "New Post"
    folder: "/site/content/post" # The path to the folder where the documents are stored
    create: true # Allow users to create new documents in this collection
    fields: # The fields each document in this collection have
      - {label: "Title", name: "title", widget: "string"}
      - {label: "Publish Date", name: "date", widget: "datetime"}
      - {label: "Body", name: "body", widget: "markdown"}