30 lines
708 B
Svelte
30 lines
708 B
Svelte
<script lang="ts">
|
|
import Banner2 from "$lib/banner2.svelte";
|
|
import Content from "$lib/viewport/content.svelte";
|
|
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",
|
|
},
|
|
]
|
|
</script>
|
|
|
|
<svelte:head>
|
|
<title>Feeds | denizk0461</title>
|
|
</svelte:head>
|
|
|
|
<Content>
|
|
<Banner2
|
|
title="Feeds"
|
|
subtitle="XML feeds" />
|
|
|
|
<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> |