diff options
Diffstat (limited to 'src/routes/+page.svelte')
| -rw-r--r-- | src/routes/+page.svelte | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte new file mode 100644 index 0000000..e304a68 --- /dev/null +++ b/src/routes/+page.svelte @@ -0,0 +1,24 @@ +<script lang="ts"> + import PostCard from "$lib/components/PostCard.svelte"; + import { getPosts } from "$lib/utils/posts"; + + const posts = getPosts(); +</script> + +<svelte:head> + <title>wenekar sucks at programming</title> + <meta + name="description" + content="A personal blog built with SvelteKit and MDsveX" + /> +</svelte:head> + +<section> + {#if posts.length === 0} + <p>No posts.</p> + {:else} + {#each posts as post} + <PostCard {post} /> + {/each} + {/if} +</section> |
