2025-12-23 18:12:07 +00:00
< script lang = "ts" >
2025-12-30 19:03:57 +00:00
import Banner2 from "$lib/banner2.svelte";
2026-01-23 14:19:20 +01:00
import Content from "$lib/viewport/content.svelte";
2026-01-23 17:26:52 +01:00
import LinkList, { type LinkEntry } from "$lib/lists/link-list.svelte";
2025-12-23 18:12:07 +00:00
2026-01-23 14:19:20 +01:00
let feeds: LinkEntry[] = [
2026-01-29 16:57:17 +01:00
{
text: "Blog",
link: "/blog/feed.xml",
},
2025-12-23 18:12:07 +00:00
{
text: "Project N5 devlog",
link: "/projects/projectn5/devlog/feed.xml",
},
]
< / script >
< svelte:head >
< title > Feeds | denizk0461< / title >
< / svelte:head >
2026-01-21 17:49:02 +01:00
< Content >
< Banner2
title="Feeds"
2026-01-23 15:30:08 +01:00
subtitle="XML feeds" />
2025-12-23 18:12:07 +00:00
< p > This is a list of RSS feeds I maintain on this website. You can subscribe to them by adding the link of any feed to an RSS reader of your liking.< / p >
2026-01-23 17:26:52 +01:00
< LinkList entries = { feeds } / >
2025-12-23 18:12:07 +00:00
< / Content >