Created
November 19, 2024 05:43
-
-
Save lukas-h/dfa4dc59fca0501ad8de00c3cf4eacdf to your computer and use it in GitHub Desktop.
DecapCMS Config
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
# admin/config.yml | |
backend: | |
name: github | |
repo: biralo-studio/biralo-studio | |
branch: main | |
site_domain: https://biralo.studio | |
base_url: https://biralo.studio | |
auth_endpoint: /api/auth | |
media_folder: assets/images | |
public_folder: /assets/images | |
collections: | |
- name: "post" | |
label: "Post" | |
folder: "_posts/" | |
create: true | |
slug: "{{year}}-{{month}}-{{day}}-{{slug}}" | |
fields: | |
- { label: "Layout", name: "layout", widget: "hidden", default: "post" } | |
- { label: "Title", name: "title", widget: "string" } | |
- { label: "Publish Date", name: "date", widget: "datetime" } | |
- { label: "Featured Image", name: "image", widget: "image" } | |
- { 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
<!-- admin/index.html --> | |
<!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> | |
<script src="https://unpkg.com/decap-cms@^3.3.3/dist/decap-cms.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment