initial commit after project creation

This commit is contained in:
Gerhard Scheikl
2026-04-01 09:38:50 +02:00
commit b02af637d4
292 changed files with 61408 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
export const YoutubeTemplate = {
name: "youtube",
label: "Youtube Video",
ui: {
defaultItem: {
embedSrc: "https://www.youtube.com/embed/CsCQS7HIBv0?si=os9ona92O2VMOl-V",
caption: "Seth goes over the basics of using TinaCMS",
minutes: "2",
},
},
fields: [
{
type: "string",
name: "embedSrc",
label: "Embed URL",
description:
"⚠︎ Only YouTube embed URLs work - they look like this https://www.youtube.com/embed/Yoh2c5RUTiY",
},
{
type: "string",
name: "caption",
label: "Caption",
description: "The caption of the video",
},
{
type: "string",
name: "minutes",
label: "Minutes",
description: "The duration of the video in minutes",
},
],
};
export default YoutubeTemplate;