A lot of AI slop
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 35s

This commit is contained in:
2026-06-08 19:36:45 +02:00
parent 8859ee5a5f
commit bbc34c1b12
20 changed files with 1606 additions and 324 deletions

View File

@@ -14,7 +14,7 @@ const { data: post } = await useAsyncData(`art-${slug}`, () =>
<!-- Render the blog post as Prose & Vue components -->
<MinimalHeader></MinimalHeader>
<div class="extended-container">
<ContentRenderer :value="post" class="art" />
<ContentRenderer v-if="post" :value="post" class="art" />
</div>
</template>