public/pages/[...slug].vue

22 lines
426 B
Vue
Raw Normal View History

2022-08-07 11:37:29 -04:00
<script setup lang="ts"></script>
2022-07-21 16:50:03 -04:00
<template>
2022-07-22 15:32:00 -04:00
<ContentDoc tag="article" class="prose dark:prose-invert">
2022-07-22 15:40:31 -04:00
<template #not-found>
<!-- 404 -->
2022-08-08 10:13:23 -04:00
<main class="prose dark:prose-invert h-full">
2022-07-22 15:40:31 -04:00
<h1>404 - Not Found</h1>
<p>Maybe you can find somewhere else?</p>
</main>
</template>
2022-07-22 15:32:00 -04:00
</ContentDoc>
2022-07-21 16:50:03 -04:00
</template>
2022-07-22 15:36:37 -04:00
<style>
2022-07-22 16:08:55 -04:00
article {
width: 80%;
2022-07-22 15:36:37 -04:00
height: 100%;
2022-07-22 15:40:31 -04:00
padding-top: 2rem;
2022-07-22 15:36:37 -04:00
}
</style>