Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .vitepress/theme/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ const { frontmatter } = useData()
<div class="space-y-5 xl:col-span-3">
<div class="space-y-6">
<h2 class="text-2xl leading-8 font-bold tracking-tight">
<a class="text-gray-900 dark:text-white" :href="url">{{ title }}</a>
<a class="text-gray-900 dark:text-white" :href="url" target="_blank">{{ title }}</a>
</h2>
<Thumbnail v-if="image" :src="image" class="object-cover" />
<div v-if="excerpt" class="prose dark:prose-invert max-w-none text-gray-500 dark:text-gray-300" v-html="excerpt"></div>
</div>
<div class="text-base leading-6 font-medium">
<a class="link" aria-label="read more" :href="url">Read more →</a>
<a class="link" aria-label="read more" :href="url" target="_blank">Read more →</a>
</div>
</div>
</article>
Expand Down
Loading