0
mirror of https://github.com/valentineus/popov.link.git synced 2025-07-14 12:50:28 +03:00

Update blog post metadata and styles

This commit is contained in:
2024-10-02 23:04:27 +00:00
parent d4eab1ff13
commit 2b53025876
6 changed files with 27 additions and 21 deletions

View File

@ -3,6 +3,7 @@ title: "Example Content"
author: "Example User"
pubDate: "2018-01-01"
description: "Howdy! This is an example blog post that shows several types of HTML content supported in this theme."
draft: true
---
Cum sociis natoque penatibus et magnis <a href="#">dis parturient montes</a>, nascetur ridiculus mus. _Aenean eu leo quam._ Pellentesque ornare sem lacinia quam venenatis vestibulum. Sed posuere consectetur est at lobortis. Cras mattis consectetur purus sit amet fermentum.

View File

@ -5,6 +5,7 @@ const blog = defineCollection({
schema: z.object({
author: z.string(),
description: z.string(),
draft: z.optional(z.boolean()),
pubDate: z.coerce.date(),
title: z.string(),
}),