feat: cms
This commit is contained in:
parent
ed560d1bfe
commit
699f25d175
2 changed files with 27 additions and 0 deletions
15
admin/config.yml
Normal file
15
admin/config.yml
Normal file
|
@ -0,0 +1,15 @@
|
|||
backend:
|
||||
name: git-gateway
|
||||
branch: main
|
||||
collections:
|
||||
- name: "posts"
|
||||
label: "Posts"
|
||||
folder: "posts"
|
||||
create: true
|
||||
slug: "YYYY/title.md"
|
||||
fields:
|
||||
- {label: "Layout", name: "layout", widget: "hidden", default: "post"}
|
||||
- {label: "Title", name: "title", widget: "string"}
|
||||
- {label: "Publish Date", name: "date", widget: "datetime", time_format: false, date_format: "YYYY-MM-DDTHH:MM-08:00", format: "YYYY-MM-DDTHH:MM-08:00"}
|
||||
- {label: "tags", name: "tags", widget: "list", default: ["posts"]}
|
||||
- {label: "Body", name: "body", widget: "markdown"}
|
12
admin/index.html
Normal file
12
admin/index.html
Normal file
|
@ -0,0 +1,12 @@
|
|||
<!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>CMS // Cory Dransfeldt</title>
|
||||
</head>
|
||||
<body>
|
||||
<script src="https://unpkg.com/decap-cms@^3.0.0/dist/decap-cms.js"></script>
|
||||
</body>
|
||||
</html>
|
Reference in a new issue