30 lines
780 B
Svelte
30 lines
780 B
Svelte
|
|
<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>
|