diff --git a/src/routes/blog/2026/0129.md b/src/routes/blog/2026/0129.md index 5658fda..bae384a 100644 --- a/src/routes/blog/2026/0129.md +++ b/src/routes/blog/2026/0129.md @@ -18,7 +18,7 @@ And I did, finally. In a spare moment at university today, I grabbed a random piece of paper lying on the table, I took one of the ballpoint pens there, and I drew this anime girl's head. -![](girl.webp) +![A small drawing of an anime-style girl's head. She has a ponytail and is looking towards the left with a concentrated gaze.](girl.webp) It's not much. I'm not claiming this to be much. It's just a small drawing. But I finished it, and I genuinely felt happy after finishing this. I felt like showing this to people because I was so proud of my small accomplishment. diff --git a/src/routes/blog/posts.ts b/src/routes/blog/posts.ts index a8f8858..31e9bee 100644 --- a/src/routes/blog/posts.ts +++ b/src/routes/blog/posts.ts @@ -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([ @@ -29,15 +22,13 @@ export const posts = new Map([ // 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.", }], ]); diff --git a/src/routes/meta/feeds/+page.svelte b/src/routes/meta/feeds/+page.svelte index c12f8fb..ecc200f 100644 --- a/src/routes/meta/feeds/+page.svelte +++ b/src/routes/meta/feeds/+page.svelte @@ -4,6 +4,10 @@ import LinkList, { type LinkEntry } from "$lib/lists/link-list.svelte"; let feeds: LinkEntry[] = [ + { + text: "Blog", + link: "/blog/feed.xml", + }, { text: "Project N5 devlog", link: "/projects/projectn5/devlog/feed.xml",