feat: Implement RSS Feed #12

Merged
aniva merged 6 commits from post/rss into main 2024-10-11 01:36:24 -07:00
1 changed files with 2 additions and 1 deletions
Showing only changes of commit 84572e15cb - Show all commits

View File

@ -51,10 +51,11 @@
>
<div id="navbar" class="h-5 items-center space-x-4 text-sm">
<a href="#bio">Bio</a>
<Separator class="bg-gray-500 dark:bg-gray-100" orientation="vertical" />
{#each routes as item}
{#if item.route !== "/"}
<Separator class="bg-gray-500 dark:bg-gray-100" orientation="vertical" />
<a href={item.route} class:disabled-link={item.disabled}>{item.name}</a>
<Separator class="bg-gray-500 dark:bg-gray-100" orientation="vertical" />
{/if}
{/each}
<a class="icon" href="/rss.xml"><Rss /></a>