-
Notifications
You must be signed in to change notification settings - Fork 0
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
0 parents
commit 1681171
Showing
3 changed files
with
41 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.DS_Store |
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,26 @@ | ||
backend: | ||
name: git-gateway | ||
branch: master | ||
|
||
media_folder: static/img | ||
public_folder: /img | ||
publish_mode: editorial_workflow | ||
|
||
collections: | ||
- name: 'blog' | ||
label: 'Blog' | ||
folder: 'src/blog' | ||
create: true | ||
extension: mdx | ||
format: frontmatter | ||
slug: 'index' | ||
media_folder: '' | ||
public_folder: '' | ||
path: '{{title}}/index' | ||
editor: | ||
preview: true | ||
fields: | ||
- { label: 'Title', name: 'title', widget: 'string' } | ||
- { label: 'Publish Date', name: 'date', widget: 'datetime' } | ||
- { label: 'Description', name: 'description', widget: 'string' } | ||
- { label: 'Body', name: 'body', widget: 'markdown' } |
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,14 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<meta name="robots" content="noindex" /> | ||
<title>Content Manager</title> | ||
</head> | ||
<body> | ||
<!-- Include the script that builds the page and powers Decap CMS --> | ||
<script src="https://unpkg.com/decap-cms@^3.0.0/dist/decap-cms.js"></script> | ||
<script src="https://identity.netlify.com/v1/netlify-identity-widget.js"></script> | ||
</body> | ||
</html> |