Skip to content

Commit

Permalink
Rem documents for now
Browse files Browse the repository at this point in the history
  • Loading branch information
RickCogley committed Oct 30, 2024
1 parent dda274b commit f80dbe8
Showing 1 changed file with 29 additions and 30 deletions.
59 changes: 29 additions & 30 deletions _cms.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;

0 comments on commit f80dbe8

Please sign in to comment.