RustyCMS: file-based headless CMS — API, Admin UI (content, types, assets), Docker/Caddy, image transform; only demo type and demo content in version control

Made-with: Cursor
This commit is contained in:
Peter Meier
2026-03-12 14:21:49 +01:00
parent aad93d145f
commit 7795a238e1
278 changed files with 15551 additions and 4072 deletions

View File

@@ -1,45 +0,0 @@
{
// Equivalent to: CF_Page extends CF_Content, CF_SEO
name: "page",
description: "Page with layout, SEO and content rows",
tags: ["content", "page"],
category: "content",
extends: [
"content_layout",
"seo"
],
fields: {
slug: {
type: "string",
required: true,
unique: true,
description: "URL slug"
},
name: {
type: "string",
required: true,
description: "Internal page name"
},
linkName: {
type: "string",
required: true,
description: "Display name in navigation"
},
icon: {
type: "string",
description: "Icon identifier (optional)"
},
headline: {
type: "string",
required: true
},
subheadline: {
type: "string"
},
topFullwidthBanner: {
type: "reference",
collection: "fullwidth_banner",
description: "Hero banner at the top"
},
}
}