This commit is contained in:
2024-10-10 14:20:13 +02:00
parent 695b187533
commit 8cce6c5074
4 changed files with 167 additions and 17 deletions

View File

@@ -1,14 +1,21 @@
local_backend: true
backend:
name: git-gateway
branch: master # Branch to update (optional; defaults to master)
publish_mode: editorial_workflow
media_folder: "static/images/uploads" # Media files will be stored in the repo under static/images/uploads
public_folder: "/images/uploads" # The src attribute for uploaded media will begin with /images/uploads
#backend:
# name: gitea
# repo: websites/coopgo # Path to your Gitea repository
# app_id: 79f9b555-62c0-414a-a1d4-5e75f2f1e12f # The Client ID provided by Gitea
# api_root: https://git.coopgo.io/api/v1 # API URL of your Gitea instance
# base_url: https://git.coopgo.io # Root URL of your Gitea instance
# auth_endpoint: https://git.coopgo.io/login/oauth/authorize
media_folder: assets/images/
public_folder: /images/
collections:
- name: 'gotogether'
label: 'GOTOGETHER le mag'
label: 'Go Together'
folder: 'content/gotogether'
create: true
slug: '{{year}}-{{month}}-{{day}}-{{slug}}'
@@ -17,5 +24,84 @@ collections:
fields:
- { label: 'Title', name: 'title', widget: 'string' }
- { label: 'Publish Date', name: 'date', widget: 'datetime' }
- { label: 'Featured image', name: 'featuredimage', widget: 'image' }
- { label: 'Description', name: 'description', widget: 'string' }
- { label: 'Body', name: 'body', widget: 'markdown' }
- { label: 'Body', name: 'body', widget: 'markdown' }
- name: 'pages'
label: 'Pages'
folder: 'content/pages'
create: true
slug: '{{year}}-{{month}}-{{day}}-{{slug}}'
editor:
preview: false
fields:
- { label: 'Title', name: 'title', widget: 'string' }
- { label: 'Publish Date', name: 'date', widget: 'datetime' }
- { label: 'Featured image', name: 'featuredimage', widget: 'image' }
- { label: 'Description', name: 'description', widget: 'string' }
- { label: 'Body', name: 'body', widget: 'markdown' }
- name: 'projects'
label: 'Projects'
folder: 'content/projects'
create: true
slug: '{{year}}-{{month}}-{{day}}-{{slug}}'
editor:
preview: false
fields:
- { label: 'Title', name: 'title', widget: 'string' }
- { label: 'Publish Date', name: 'date', widget: 'datetime' }
- { label: 'Featured image', name: 'featuredimage', widget: 'image' }
- { label: 'Description', name: 'description', widget: 'string' }
- { label: 'Body', name: 'body', widget: 'markdown' }
- name: 'kitandgo'
label: 'KIT&Go'
folder: 'content/gotogether/kitandgo'
create: true
slug: '{{year}}-{{month}}-{{day}}-{{slug}}'
editor:
preview: false
fields:
- { label: 'Title', name: 'title', widget: 'string' }
- { label: 'Publish Date', name: 'date', widget: 'datetime' }
- { label: 'Featured image', name: 'featuredimage', widget: 'image' }
- { label: 'Description', name: 'description', widget: 'string' }
- { label: 'Body', name: 'body', widget: 'markdown' }
- name: 'references'
label: 'References'
folder: 'content/references'
create: true
slug: '{{year}}-{{month}}-{{day}}-{{slug}}'
editor:
preview: false
fields:
- { label: 'Title', name: 'title', widget: 'string' }
- { label: 'Publish Date', name: 'date', widget: 'datetime' }
- { label: 'Description', name: 'description', widget: 'string' }
- { label: 'Featured image', name: 'featuredimage', widget: 'image' }
- { label: 'Body', name: 'body', widget: 'markdown' }
- name: 'emplois'
label: 'Emplois'
folder: 'content/emplois'
create: true
slug: '{{year}}-{{month}}-{{day}}-{{slug}}'
editor:
preview: false
fields:
- { label: 'Title', name: 'title', widget: 'string' }
- { label: 'Publish Date', name: 'date', widget: 'datetime' }
- { label: 'Featured image', name: 'featuredimage', widget: 'image' }
- { label: 'Description', name: 'description', widget: 'string' }
- { label: 'Body', name: 'body', widget: 'markdown' }
- name: 'other'
label: 'Autres pages'
folder: 'content'
create: true
slug: '{{year}}-{{month}}-{{day}}-{{slug}}'
editor:
preview: false
fields:
- { label: 'Title', name: 'title', widget: 'string' }
- { label: 'Publish Date', name: 'date', widget: 'datetime' }
- { label: 'Featured image', name: 'featuredimage', widget: 'image' }
- { label: 'Description', name: 'description', widget: 'string' }
- { label: 'Body', name: 'body', widget: 'markdown' }

View File

@@ -1,12 +1,15 @@
<!doctype 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>
<!-- 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>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Content Manager</title>
<!-- Include the script that enables Netlify Identity on this page. -->
<script src="https://identity.netlify.com/v1/netlify-identity-widget.js"></script>
</head>
<body>
sdkjfqlksjd
<!-- Include the script that builds the page and powers Decap CMS -->
<script src="https://unpkg.com/decap-cms@^3.3.0/dist/decap-cms.js"></script>
</body>
</html>