This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
<script setup>
|
||||
import FixedLayout from '~/components/layouts/FixedLayout.vue';
|
||||
import PageHeader from '~/components/parts/PageHeader.vue';
|
||||
|
||||
const slug = useRoute().params.slug;
|
||||
@@ -12,9 +13,11 @@ const { data: post } = await useAsyncData(`blog-${slug}`, () =>
|
||||
<template>
|
||||
<!-- Render the blog post as Prose & Vue components -->
|
||||
<PageHeader></PageHeader>
|
||||
<Container>
|
||||
<ContentRenderer :value="post" class="blog" />
|
||||
</Container>
|
||||
<FixedLayout>
|
||||
<Container>
|
||||
<ContentRenderer :value="post" class="blog" />
|
||||
</Container>
|
||||
</FixedLayout>
|
||||
<Footer></Footer>
|
||||
</template>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user