Files
mariosant.dev/components/home/recent-posts.vue

20 lines
610 B
Vue

<template>
<UContainer class="flex flex-col gap-5 p-4 sm:p-6 lg:p-8 max-w-3xl" as="section">
<ULink
class="text-sm text-gray-500 flex flex-row gap-1 items-center group"
to="/articles"
>
Recent articles
<UIcon
class="opacity-0 group-hover:opacity-100 transition-opacity"
name="i-heroicons-arrow-right"
/></ULink>
<ContentList :query="{ sort: [{ date: -1 }], limit: 2 }" v-slot="{ list }">
<div v-for="article in list" :key="article._path">
<ArticleListing :article="article" />
</div>
</ContentList>
</UContainer>
</template>