mirror of
https://github.com/Ad-closeNN/blog-fuwari.git
synced 2026-05-31 02:20:05 -04:00
15 lines
473 B
Plaintext
15 lines
473 B
Plaintext
---
|
|
import ArchivePanel from "@components/ArchivePanel.svelte";
|
|
import I18nKey from "@i18n/i18nKey";
|
|
import { i18n } from "@i18n/translation";
|
|
import MainGridLayout from "@layouts/MainGridLayout.astro";
|
|
import { getSortedPostsList } from "../utils/content-utils";
|
|
|
|
const sortedPostsList = await getSortedPostsList();
|
|
---
|
|
|
|
<MainGridLayout title={i18n(I18nKey.archive)}>
|
|
<ArchivePanel sortedPosts={sortedPostsList} client:only="svelte"></ArchivePanel>
|
|
</MainGridLayout>
|
|
|