added rss feed for blogs to /meta/feeds; small changes to blog entry 1 metadata

This commit is contained in:
2026-01-29 16:57:17 +01:00
parent 1652456cc8
commit cbc00e1cd7
3 changed files with 6 additions and 11 deletions

View File

@@ -13,13 +13,6 @@ export interface BlogPostDetails {
* Description to be used in page's metadata.
*/
description: string;
tags: BlogTags[]; // enum
}
export enum BlogTags {
YEAR_2026,
CREATIVITY,
}
export const posts = new Map<string, BlogPostDetails>([
@@ -29,15 +22,13 @@ export const posts = new Map<string, BlogPostDetails>([
// banner: "",
// title: "Portsmouth Postmortem",
// description: "",
// tags: [],
// }],
["2026/0129", {
date: "2026-01-29",
time: "16:42",
banner: "girl.webp",
title: "Limitations",
description: "",
tags: [BlogTags.YEAR_2026, BlogTags.CREATIVITY],
description: "Something about how boundaries can foster creativity.",
}],
]);