-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.vue
49 lines (44 loc) · 1.31 KB
/
index.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<script setup lang="ts">
import { usePost } from '~/hooks'
import siteConfig from '~/site.config'
const { t } = useI18n()
const siteTitle = ref(siteConfig.title)
const siteDescription = ref(siteConfig.description)
const routes = usePost('/posts')
const posts = computed(() => routes
.map(r => r.meta)
.filter(m => m.type === 'post')
.sort((p1, p2) => Date.parse(p2.date as string) - Date.parse(p1.date as string))
.slice(0, 10))
</script>
<template>
<div class="divide-y divide-gray-200 dark:divide-gray-700">
<div class="pt-6 pb-8 space-y-2 md:space-y-5">
<h1
class="text-3xl font-extrabold leading-9 tracking-tight text-gray-900 dark:text-gray-100 sm:text-4xl sm:leading-10 md:text-6xl md:leading-14"
>
{{ siteTitle }}
</h1>
<p class="text-lg leading-7 text-gray-500 dark:text-gray-400">
{{ siteDescription }}
</p>
</div>
<PostList :posts="posts" />
</div>
<div
v-if="Array.isArray(posts) && posts.length > 0"
class="flex justify-end text-base font-medium leading-6"
>
<Link
href="/blog"
class="text-primary-500 hover:text-primary-600 dark:hover:text-primary-400"
:aria-label="t('all_posts')"
>
{{ t('all_posts') }} →
</Link>
</div>
</template>
<route lang="yaml">
meta:
layout: default
</route>