added RSS feed for devlog
This commit is contained in:
30
src/routes/feeds/+page.svelte
Normal file
30
src/routes/feeds/+page.svelte
Normal 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>
|
||||
Reference in New Issue
Block a user