2024-07-02 15:07:22 +00:00
|
|
|
<template>
|
2024-08-10 08:40:59 +00:00
|
|
|
<v-container class="content-container mx-auto">
|
|
|
|
<v-card v-if="page" class="mb-5" :to="page._path">
|
|
|
|
<v-card-text>
|
|
|
|
<v-row>
|
|
|
|
<v-col cols="12" md="4">
|
|
|
|
<v-img :src="page.thumbnail" :aspect-ratio="16/9" class="rounded-md" cover />
|
|
|
|
</v-col>
|
|
|
|
<v-col cols="12" md="8" class="flex flex-col">
|
|
|
|
<h2 class="text-xl">{{ page.title }}</h2>
|
|
|
|
<span>{{ page.description }}</span>
|
|
|
|
<v-chip
|
|
|
|
v-if="page?.archived"
|
|
|
|
label
|
|
|
|
prepend-icon="mdi-archive"
|
|
|
|
variant="text"
|
|
|
|
color="warning"
|
|
|
|
size="small"
|
|
|
|
class="mx-[-6px]"
|
|
|
|
>
|
|
|
|
Archived
|
|
|
|
</v-chip>
|
|
|
|
</v-col>
|
|
|
|
</v-row>
|
|
|
|
</v-card-text>
|
|
|
|
</v-card>
|
|
|
|
|
2024-08-10 13:16:36 +00:00
|
|
|
<article class="text-base prose xl:text-lg mx-auto">
|
2024-08-10 05:26:58 +00:00
|
|
|
<content-doc>
|
|
|
|
<template #empty>
|
|
|
|
<v-empty-state
|
|
|
|
icon="mdi-image-broken-variant"
|
2024-08-10 07:00:17 +00:00
|
|
|
text="This product has no specific describe for it, yet."
|
2024-08-10 05:26:58 +00:00
|
|
|
title="No Content"
|
|
|
|
class="no-content-placeholder"
|
|
|
|
>
|
|
|
|
<template #actions>
|
|
|
|
<v-btn prepend-icon="mdi-list-box" variant="plain" text="Back to index" to="/products" exact />
|
|
|
|
</template>
|
|
|
|
</v-empty-state>
|
|
|
|
</template>
|
2024-08-10 07:00:17 +00:00
|
|
|
<template #not-found>
|
|
|
|
<v-empty-state
|
|
|
|
icon="mdi-flask-empty-remove-outline"
|
|
|
|
text="We haven't this product, yet."
|
|
|
|
title="Not Found"
|
|
|
|
class="no-content-placeholder"
|
|
|
|
>
|
|
|
|
<template #actions>
|
|
|
|
<v-btn prepend-icon="mdi-list-box" variant="plain" text="Back to index" to="/products" exact />
|
|
|
|
</template>
|
|
|
|
</v-empty-state>
|
|
|
|
</template>
|
2024-08-10 05:26:58 +00:00
|
|
|
</content-doc>
|
|
|
|
</article>
|
2024-07-02 15:07:22 +00:00
|
|
|
</v-container>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.no-content-placeholder {
|
|
|
|
min-height: 0;
|
|
|
|
max-height: 64rem;
|
|
|
|
}
|
|
|
|
</style>
|
2024-08-10 08:40:59 +00:00
|
|
|
|
2024-08-10 07:00:17 +00:00
|
|
|
<script setup lang="ts">
|
2024-08-10 08:40:59 +00:00
|
|
|
const route = useRoute();
|
|
|
|
const { data: page } = await useAsyncData('page', queryContent(route.path).findOne)
|
2024-08-10 07:00:17 +00:00
|
|
|
</script>
|
2024-08-10 08:40:59 +00:00
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.content-container {
|
|
|
|
max-width: 65ch !important;
|
|
|
|
}
|
|
|
|
</style>
|