mirror of
https://github.com/ArthurDanjou/artchat.git
synced 2026-01-14 11:54:03 +01:00
90 lines
2.0 KiB
Vue
90 lines
2.0 KiB
Vue
<script lang="ts" setup>
|
|
import { useDateFormat } from '#imports'
|
|
|
|
const route = useRoute()
|
|
const { data: writing } = await useAsyncData(`writings/${route.params.slug}`, () =>
|
|
queryCollection('writings').path(`/writings/${route.params.slug}`).first())
|
|
|
|
if (!writing.value) {
|
|
throw createError({
|
|
statusCode: 404,
|
|
statusMessage: `Writing "${route.params.slug}" not found`,
|
|
})
|
|
}
|
|
|
|
const { t } = useI18n()
|
|
|
|
useSeoMeta(writing.value.seo || {})
|
|
</script>
|
|
|
|
<template>
|
|
<UContainer v-if="writing" class="mt-16 mb-22">
|
|
<NuxtLink
|
|
to="/writings"
|
|
class="mb-4 text-sm text-neutral-500 duration-300 flex items-center gap-1 hover:text-black dark:hover:text-white"
|
|
>
|
|
<UIcon name="ph:arrow-left-duotone" size="16" />
|
|
<span>{{ t('writings.back') }}</span>
|
|
</NuxtLink>
|
|
<div>
|
|
<div class="flex items-end justify-between gap-2 flex-wrap">
|
|
<h1
|
|
class="font-bold text-3xl text-black dark:text-white"
|
|
>
|
|
{{ writing.title }}
|
|
</h1>
|
|
<div
|
|
class="text-sm text-neutral-500 duration-300 flex items-center gap-1"
|
|
>
|
|
<UIcon name="ph:calendar-duotone" size="16" />
|
|
<p>{{ useDateFormat(writing.publishedAt, 'DD MMMM YYYY').value }} </p>
|
|
</div>
|
|
</div>
|
|
<p class="mt-2 text-base">
|
|
{{ writing.description }}
|
|
</p>
|
|
</div>
|
|
<div
|
|
v-if="writing.cover"
|
|
class="w-full rounded-md my-8"
|
|
>
|
|
<ProseImg
|
|
:src="`/writings/${writing.cover}`"
|
|
label="Project cover"
|
|
/>
|
|
</div>
|
|
<PostAlert class="my-8 font-bold" />
|
|
<USeparator
|
|
class="my-4"
|
|
icon="i-ph-pencil-line-duotone"
|
|
/>
|
|
<ClientOnly>
|
|
<ContentRenderer
|
|
:value="writing"
|
|
class="!max-w-none prose dark:prose-invert"
|
|
/>
|
|
</ClientOnly>
|
|
<PostFooter />
|
|
</UContainer>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.prose h2 a,
|
|
.prose h3 a,
|
|
.prose h4 a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.prose img {
|
|
margin: 0;
|
|
}
|
|
|
|
.katex-html {
|
|
display: none;
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
</style>
|