37 lines
1.4 KiB
TypeScript
37 lines
1.4 KiB
TypeScript
import { defineCollection, z } from 'astro:content';
|
|
import { glob } from 'astro/loaders';
|
|
|
|
// News/articles live as Markdown files in src/content/news/*.md.
|
|
// This is exactly what Sveltia CMS edits — the CMS writes these files, Astro
|
|
// renders them to static HTML at build time.
|
|
const news = defineCollection({
|
|
loader: glob({ pattern: '**/*.md', base: './src/content/news' }),
|
|
schema: z.object({
|
|
title: z.string(),
|
|
description: z.string(),
|
|
date: z.coerce.date(),
|
|
category: z.string().default('news'),
|
|
author: z.string().default('CTAO'),
|
|
// Public-path string, e.g. "/uploads/foo.jpg" — Sveltia uploads media to
|
|
// public/uploads, which Astro's image() helper can't validate (src/ only).
|
|
cover: z.string().optional(),
|
|
// BCP-47 tag when an article is not in English (e.g. "pl") — carried to
|
|
// <html lang> so screen readers pick the right voice.
|
|
lang: z.string().optional(),
|
|
draft: z.boolean().default(false),
|
|
}),
|
|
});
|
|
|
|
// Static portal pages (privacy, disclaimer, contact…) — separate collection
|
|
// because the content type differs (no dates/covers/categories), and editors
|
|
// get a distinct "Pages" section in the CMS.
|
|
const pages = defineCollection({
|
|
loader: glob({ pattern: '**/*.md', base: './src/content/pages' }),
|
|
schema: z.object({
|
|
title: z.string(),
|
|
description: z.string().optional(),
|
|
}),
|
|
});
|
|
|
|
export const collections = { news, pages };
|