diff options
| author | Joe Carstairs <jcarstairs@scottlogic.com> | 2024-06-11 11:27:00 +0100 |
|---|---|---|
| committer | Joe Carstairs <jcarstairs@scottlogic.com> | 2024-06-11 11:27:00 +0100 |
| commit | 952c90bbbf49e11b51b0d5fc6843b6a08156dc1d (patch) | |
| tree | 4b3474308f1f58fd7c45afdbccaf5ea515853784 /website/src/content/config.ts | |
| parent | fe154c01cff35bf422bc6183e8629f28f352b0a6 (diff) | |
Can hide blog posts
Diffstat (limited to 'website/src/content/config.ts')
| -rw-r--r-- | website/src/content/config.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/website/src/content/config.ts b/website/src/content/config.ts index 58dbc00..8bcd92d 100644 --- a/website/src/content/config.ts +++ b/website/src/content/config.ts @@ -10,6 +10,7 @@ const blog = defineCollection({ type: 'content', schema: z.object({ title: z.string(), + hidden: z.optional(z.boolean()), description: z.string(), pubDate: dateSchema, updatedDate: z.optional(dateSchema), |
