moved CSS rules so that link lists and ul look identical; adjusted header

This commit is contained in:
2026-01-21 17:42:59 +01:00
parent 01feb485bf
commit df73da9ae2
14 changed files with 271 additions and 302 deletions

View File

@@ -1,9 +1,9 @@
<script lang="ts">
import Banner2 from "$lib/banner2.svelte";
import Content from "$lib/content.svelte";
import LinkList, { type LinkEntry } from "$lib/link-list.svelte";
import List, { type ListEntry } from "$lib/link-list.svelte";
let feeds: LinkEntry[] = [
let feeds: ListEntry[] = [
{
text: "Project N5 devlog",
link: "/projects/projectn5/devlog/feed.xml",
@@ -24,5 +24,5 @@
<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} />
<List entries={feeds} />
</Content>