feat: add articles

This commit is contained in:
Marios Antonoudiou
2023-12-20 16:52:33 +02:00
parent e9358a1528
commit 19c3158f56
13 changed files with 4282 additions and 18 deletions

21
pages/articles/index.vue Normal file
View File

@@ -0,0 +1,21 @@
<script setup lang="ts">
definePageMeta({
layout: "content",
});
</script>
<template>
<UContainer class="flex flex-col gap-3 prose">
<h1>Articles</h1>
</UContainer>
<UContainer class="flex flex-col gap-3 !pt-0">
<ContentList :query="{ sort: [{ date: -1 }] }" v-slot="{ list }">
<div v-for="article in list" :key="article._path">
<ArticleListing :article="article" />
</div>
</ContentList>
</UContainer>
<Footer />
</template>