mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2024-12-25 22:39:41 +01:00
Add NetlifyCMS config
This commit is contained in:
parent
440d4e88c7
commit
fd85dc355a
35
static/admin/config.yml
Normal file
35
static/admin/config.yml
Normal file
@ -0,0 +1,35 @@
|
||||
backend:
|
||||
name: git-gateway
|
||||
branch: master
|
||||
|
||||
media_folder: "static/uploads"
|
||||
public_folder: "/uploads"
|
||||
|
||||
collections:
|
||||
- name: "posts"
|
||||
label: "Posts"
|
||||
folder: "content/posts"
|
||||
create: true
|
||||
slug: "{{year}}-{{month}}-{{day}}---{{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"}
|
0
static/uploads/.keep
Normal file
0
static/uploads/.keep
Normal file
Loading…
Reference in New Issue
Block a user