Capital/pages/posts/index.vue

33 lines
612 B
Vue
Raw Normal View History

2024-08-16 16:43:08 +00:00
<template>
<v-container class="content-container mx-auto">
2024-09-22 12:32:23 +00:00
<div class="my-3 mx-[1.5ch]">
2024-08-16 16:43:08 +00:00
<h1 class="text-2xl">{{ t("navPosts") }}</h1>
<span>{{ t("navPostsCaption") }}</span>
</div>
2024-09-22 12:32:23 +00:00
<post-list class="mx-[-2.5ch]" />
2024-08-16 16:43:08 +00:00
</v-container>
</template>
<script setup lang="ts">
const { t } = useI18n()
useHead({
2024-08-16 17:33:16 +00:00
title: t("navPosts"),
2024-08-16 16:43:08 +00:00
})
useSeoMeta({
2024-08-16 17:33:16 +00:00
title: t("navPosts"),
ogTitle: t("navPosts"),
description: t("navPostsCaption"),
ogDescription: t("navPostsCaption"),
2024-08-16 16:43:08 +00:00
ogType: "website",
})
</script>
<style scoped>
.content-container {
max-width: 70ch !important;
}
</style>