From f80dbe83a294e84cea728873757f8d2441e70a6a Mon Sep 17 00:00:00 2001 From: Rick Cogley Date: Thu, 31 Oct 2024 08:39:20 +0900 Subject: [PATCH] Rem documents for now --- _cms.ts | 59 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 29 insertions(+), 30 deletions(-) diff --git a/_cms.ts b/_cms.ts index c426d90..962100f 100644 --- a/_cms.ts +++ b/_cms.ts @@ -118,36 +118,35 @@ cms.collection( ], ); -cms.document({ - name: "Top Page", - description: "Edit the content of the home page", - store: "src:index.vto", - fields: [ - "title: text", - "description: text", - "priority: number", - "content: markdown", - ] -}); - -cms.document({ - name: "About Page", - description: "Edit the content of the about page", - store: "src:about.vto", - fields: [ - "title: text", - "description: text", - "priority: number", - "content: markdown", - ] -}); +// cms.document({ +// name: "Top Page", +// description: "Edit the content of the home page", +// store: "src:index.vto", +// fields: [ +// "title: text", +// "description: text", +// "priority: number", +// "content: markdown", +// ] +// }); -cms.document({ - name: "ld-person", - description: "Edit the content of the ld+json script for the person", - store: "src:_includes/templates/ld-person.vto", - content: "markdown", -}) +// cms.document({ +// name: "About Page", +// description: "Edit the content of the about page", +// store: "src:about.vto", +// fields: [ +// "title: text", +// "description: text", +// "priority: number", +// "content: markdown", +// ] +// }); -export default cms; +// cms.document({ +// name: "ld-person", +// description: "Edit the content of the ld+json script for the person", +// store: "src:_includes/templates/ld-person.vto", +// content: "markdown", +// }) +export default cms; \ No newline at end of file