diff options
Diffstat (limited to 'src/content')
| -rw-r--r-- | src/content/blog/getting-started-astro.md | 9 | ||||
| -rw-r--r-- | src/content/config.ts | 14 |
2 files changed, 23 insertions, 0 deletions
diff --git a/src/content/blog/getting-started-astro.md b/src/content/blog/getting-started-astro.md new file mode 100644 index 0000000..fcddbcc --- /dev/null +++ b/src/content/blog/getting-started-astro.md @@ -0,0 +1,9 @@ +--- +title: "Getting Started with Astro" +description: "Basic Astro Blog Post" +publishDate: 2026-03-21 +author: "Iwan R. Ingman" +--- + +# Test Blog Post +This is a test Astro blog post.
\ No newline at end of file diff --git a/src/content/config.ts b/src/content/config.ts new file mode 100644 index 0000000..3886d49 --- /dev/null +++ b/src/content/config.ts @@ -0,0 +1,14 @@ +import { defineCollection, z } from 'astro:content'; + +const blog = defineCollection({ + schema: z.object({ + title: z.string(), + description: z.string(), + publishDate: z.coerce.date(), + author: z.string(), + }), +}); + +export const collections = { + blog, +}; |
