fix: RSS Styling and Trailing Slash Problems #16

Merged
aniva merged 3 commits from post/rss into main 2024-10-11 15:00:32 -07:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 2c1e7a0a39 - Show all commits

View File

@ -19,7 +19,7 @@
class:disabled-link={item.disabled}
href={item.route}>{item.name}</a>
{/each}
<a class="icon" href="/rss.xml"><Rss /></a>
<a class="nav-link icon" href="/rss.xml"><Rss /></a>
</div>
<style>

View File

@ -2,6 +2,6 @@ import type { PageLoad } from './$types';
import { getTags } from '$lib/posts';
export const load: PageLoad = async (_) => {
let allTags = await getTags();
const allTags = await getTags();
return { allTags };
};