1
0
Fork 0
mirror of https://github.com/mat-1/matdoesdev.git synced 2025-08-02 14:46:04 +00:00
matdoesdev/src/routes/(main)/[slug]/+page.svelte
2024-06-24 02:08:10 +00:00

13 lines
409 B
Svelte

<script lang="ts">
import type { PageData } from './$types'
export let data: PageData
const { page, slug } = data
</script>
<!-- make sveltekit crawl to the json, txt, and md api -->
<div style="display:none"><a href="{slug}.json">JSON API</a></div>
<div style="display:none"><a href="{slug}.txt">txt</a></div>
<div style="display:none"><a href="{slug}.md">md</a></div>
<svelte:component this={page} />