Files
rustycms/types/content_layout.json5
Peter Meier 4de99db670
Some checks failed
Deploy to Server / deploy (push) Failing after 7s
Track all types in git, sync to server on deploy
2026-03-15 14:38:37 +01:00

150 lines
3.0 KiB
Plaintext

{
// Equivalent to: CF_Content interface
// Base type for pages/posts with a 3-row content layout
name: "content_layout",
description: "Base layout with 3 content rows (inherited by page, post, etc.)",
tags: ["layout", "partial"],
category: "layout",
fields: {
row1JustifyContent: {
type: "string",
enum: [
"start",
"end",
"center",
"between",
"around",
"evenly"
],
default: "start",
description: "Justify content for row 1",
},
row1AlignItems: {
type: "string",
enum: [
"start",
"end",
"center",
"baseline",
"stretch"
],
default: "stretch",
description: "Align items for row 1",
},
row1Content: {
type: "array",
items: {
type: "reference",
collections: [
"markdown",
"post_overview",
"html",
"headline",
"image",
"quote",
"youtube_video",
"image_gallery",
"iframe",
"searchable_text",
"fullwidth_banner",
"list",
"link_list",
"calendar"
],
},
description: "Content components for row 1 (Markdown, Post Overview, HTML, Headline, Image, …)",
},
row2JustifyContent: {
type: "string",
enum: [
"start",
"end",
"center",
"between",
"around",
"evenly"
],
default: "start",
},
row2AlignItems: {
type: "string",
enum: [
"start",
"end",
"center",
"baseline",
"stretch"
],
default: "stretch",
},
row2Content: {
type: "array",
items: {
type: "reference",
collections: [
"markdown",
"post_overview",
"html",
"headline",
"image",
"quote",
"youtube_video",
"image_gallery",
"iframe",
"searchable_text",
"fullwidth_banner",
"list",
"link_list",
"calendar"
],
},
description: "Content components for row 2",
},
row3JustifyContent: {
type: "string",
enum: [
"start",
"end",
"center",
"between",
"around",
"evenly"
],
default: "start",
},
row3AlignItems: {
type: "string",
enum: [
"start",
"end",
"center",
"baseline",
"stretch"
],
default: "stretch",
},
row3Content: {
type: "array",
items: {
type: "reference",
collections: [
"markdown",
"post_overview",
"html",
"headline",
"image",
"quote",
"youtube_video",
"image_gallery",
"iframe",
"searchable_text",
"fullwidth_banner",
"list",
"link_list",
"calendar"
],
},
description: "Content components for row 3",
},
}
}