14 lines
457 B
Text
14 lines
457 B
Text
---
|
|
import ArchivePanel from "@components/ArchivePanel.svelte";
|
|
import I18nKey from "@i18n/i18nKey";
|
|
import { i18n } from "@i18n/translation";
|
|
import MainGridLayout from "@layouts/MainGridLayout.astro";
|
|
import { getSortedPosts } from "../utils/content-utils";
|
|
|
|
const sortedPosts = await getSortedPosts();
|
|
---
|
|
|
|
<MainGridLayout title={i18n(I18nKey.archive)}>
|
|
<ArchivePanel sortedPosts={sortedPosts} client:only="svelte"></ArchivePanel>
|
|
</MainGridLayout>
|
|
|