added rss feed for blogs to /meta/feeds; small changes to blog entry 1 metadata
This commit is contained in:
@@ -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.
|
||||
|
||||

|
||||

|
||||
|
||||
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.
|
||||
|
||||
|
||||
@@ -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.",
|
||||
}],
|
||||
]);
|
||||
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user