This commit is contained in:
2021-08-21 11:12:25 +02:00
parent 0f8c58d182
commit 170d61dd96
12 changed files with 172 additions and 44 deletions

View File

@@ -0,0 +1,32 @@
<script lang="ts" context="module">
import type { Load } from '@sveltejs/kit'
export const prerender = true
export const load: Load = async ({ fetch, page }) => {
return {
props: {
data: await fetch(`/api/posts/${page.params.slug}.json`).then((r) => r.json()),
},
}
}
</script>
<script lang="ts">
import type { Post } from '$lib/api'
import SimplePage from '$lib/components/SimplePage.svelte'
import PostAttributes from '$lib/components/PostAttributes.svelte'
import WpAdapter from '$lib/components/WPAdapter.svelte'
export let data: Post
</script>
<svelte:head>
<title>Works</title>
</svelte:head>
<SimplePage title={data.title}>
<PostAttributes post={data} full />
{#if data.content}
<WpAdapter content={data.content} />
{/if}
</SimplePage>

View File

@@ -0,0 +1,30 @@
<script lang="ts" context="module">
import type { Load } from '@sveltejs/kit'
export const prerender = true
export const load: Load = async ({ fetch }) => {
return {
props: {
data: await fetch('/api/posts/*.json').then((r) => r.json()),
},
}
}
</script>
<script lang="ts">
import type { Post } from '$lib/api'
import SimplePage from '$lib/components/SimplePage.svelte'
import PostPreview from '$lib/components/PostPreview.svelte'
export let data: Post[]
</script>
<svelte:head>
<title>Blog</title>
</svelte:head>
<SimplePage title="Works">
{#each data as post}
<PostPreview {post} />
{/each}
</SimplePage>