- admin/index.html: Decap CMS loader - admin/config.yml: Gitea backend config (native support!) - .eleventy.js: Added admin passthrough copy OAuth App created in Gitea: - Client ID: ad439d72-e724-4f88-ad24-a1187c52b313 - Redirect URI: https://firefrostgaming.com/admin/ Gemini's architecture: Decap → Gitea (direct) → GitHub mirror → Cloudflare Pages No bidirectional sync issues, Gitea remains source of truth. Signed-off-by: Claude <claude@firefrostgaming.com>
18 lines
440 B
HTML
18 lines
440 B
HTML
<!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>Firefrost CMS</title>
|
|
<style>
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<script src="https://unpkg.com/decap-cms@^3.0.0/dist/decap-cms.js"></script>
|
|
</body>
|
|
</html>
|