fix: RSS Feed separator

This commit is contained in:
Leni Aniva 2024-10-11 01:34:53 -07:00
parent 8983d3ecaf
commit 84572e15cb
Signed by: aniva
GPG Key ID: 4D9B1C8D10EA4C50
1 changed files with 2 additions and 1 deletions

View File

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