Skip to content

fixing-anchor #35

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 15, 2024
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