-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1495e2e
commit bf70df6
Showing
3 changed files
with
43 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
backend: | ||
name: git-gateway | ||
branch: master | ||
repo: mirkosertic/www_mirkosertic_de | ||
media_folder: "static/media" | ||
collections: | ||
- name: "blog" # Used in routes, e.g., /admin/collections/blog | ||
label: "Blog" # Used in the UI | ||
folder: "content/post" # The path to the folder where the documents are stored | ||
create: true # Allow users to create new documents in this collection | ||
slug: "{{slug}}" # Filename template, e.g., YYYY-MM-DD-title.md | ||
fields: # The fields for each document, usually in front matter | ||
- {label: "Title", name: "title", widget: "string"} | ||
- {label: "Description", name: "description", widget: "string"} | ||
- {label: "Publish Date", name: "date", widget: "datetime"} | ||
- {label: "Tags", name: "date", widget: "datetime"} | ||
- {label: "Body", name: "tags", widget: "list"} | ||
- name: "global" # Used in routes, e.g., /admin/collections/blog | ||
label: "Global" # Used in the UI | ||
folder: "content/global" # The path to the folder where the documents are stored | ||
create: true # Allow users to create new documents in this collection | ||
slug: "{{slug}}" # Filename template, e.g., YYYY-MM-DD-title.md | ||
fields: # The fields for each document, usually in front matter | ||
- {label: "Title", name: "title", widget: "string"} | ||
- {label: "Description", name: "description", widget: "string"} | ||
- {label: "Publish Date", name: "date", widget: "datetime"} | ||
- {label: "Tags", name: "date", widget: "datetime"} | ||
- {label: "Body", name: "tags", widget: "list"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Content Manager</title> | ||
</head> | ||
<body> | ||
<!-- Include the script that builds the page and powers Netlify CMS --> | ||
<script src="https://unpkg.com/netlify-cms@^2.0.0/dist/netlify-cms.js"></script> | ||
</body> | ||
</html> |