This commit is contained in:
2021-09-01 15:29:47 +02:00
parent 92a4fb9d94
commit deb89701f7
7 changed files with 175 additions and 7 deletions

View File

@@ -20,10 +20,10 @@
</script>
<svelte:head>
<title>Works</title>
<title>Blog - {data.title}</title>
</svelte:head>
<SimplePage title={data.title}>
<SimplePage title={data.title} readable>
<PostAttributes post={data} full />
{#if data.content}
<WpAdapter content={data.content} />

View File

@@ -1,6 +1,7 @@
<script lang="ts" context="module">
import type { Load } from '@sveltejs/kit'
export const prerender = true
export const load: Load = async ({ fetch }) => {
return {
props: {