Change base url to test.ifsr.de and basic decap configuration

This commit is contained in:
Frieder Hannenheim 2025-05-21 14:24:39 +02:00
parent 7ddf74e804
commit de20314019
3 changed files with 29 additions and 13 deletions

View file

@ -1,4 +1,4 @@
baseURL = "https://jannikmenzel.me/iFSR-Website/" baseURL = "https://test.ifsr.de/"
canonifyURLs = true canonifyURLs = true
languageCode = 'de' languageCode = 'de'
title = 'iFSR-Website' title = 'iFSR-Website'
@ -19,4 +19,4 @@ disableXML = true
[markup.goldmark] [markup.goldmark]
[markup.goldmark.parser] [markup.goldmark.parser]
[markup.goldmark.parser.attribute] [markup.goldmark.parser.attribute]
title = true title = true

View file

@ -1,5 +1,19 @@
backend: backend:
name: git-gateway name: gitea
branch: main branch: main
repo: FSR/webseite
app_id: b634f97b-1525-4382-96d3-b1fa08858fd3
api_root: https://git.ifsr.de/api/v1
base_url: https://git.ifsr.de
auth_endpoint: https://git.ifsr.de/login/oauth/authorize
media_folder: "static/images" media_folder: "static/images"
public_folder: "/images" public_folder: "/images"
collections:
- name: "content"
label: "Content"
folder: "content"
create: true
fields:
- { label: "Title", name: "title", widget: "string" }
- { label: "Body", name: "body", widget: "markdown" }

View file

@ -1,12 +1,14 @@
<!DOCTYPE html> <!doctype html>
<html lang="de"> <html>
<head> <head>
<meta charset="utf-8" /> <meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="robots" content="noindex" />
<title>Content Manager</title> <title>Content Manager</title>
<script src=""></script> </head>
</head> <body>
<body> <!-- Include the script that builds the page and powers Decap CMS -->
<script src=""></script> <script src="https://unpkg.com/decap-cms@^3.0.0/dist/decap-cms.js"></script>
</body> </body>
</html> </html>