feat: Blog catalog and tags #7

Merged
aniva merged 11 commits from post/page into main 2024-10-10 14:49:18 -07:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 636a00f826 - Show all commits

View File

@ -1,11 +1,11 @@
<script lang="ts">
import { fade } from 'svelte/transition'
import { blur } from 'svelte/transition'
export let url: string
</script>
{#key url}
<div class="transition" in:fade>
<div class="transition" in:blur>
<slot />
</div>
{/key}