added RSS feed for devlog

This commit is contained in:
2025-12-23 18:12:07 +00:00
parent f52d94751b
commit 3489060156
4 changed files with 71 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<script lang="ts">
import BannerTitleAlt from "$lib/banner-title-alt.svelte";
import Content from "$lib/content.svelte";
import LinkList, { type LinkEntry } from "$lib/link-list.svelte";
let feeds: LinkEntry[] = [
{
text: "Project N5 devlog",
link: "/projects/projectn5/devlog/feed.xml",
},
]
</script>
<svelte:head>
<title>Feeds | denizk0461</title>
</svelte:head>
<BannerTitleAlt
title="Feeds"
banner="/feeds/banner.webp"
bannerAlt="Mirror picture of me, pixelated beyond recognition"
subtitle="XML feeds"
pixelated
/>
<Content>
<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>
<LinkList entries={feeds} />
</Content>