summaryrefslogtreecommitdiffhomepage
path: root/services/blog/nuldoc-src/pages/PostListPage.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'services/blog/nuldoc-src/pages/PostListPage.tsx')
-rw-r--r--services/blog/nuldoc-src/pages/PostListPage.tsx54
1 files changed, 54 insertions, 0 deletions
diff --git a/services/blog/nuldoc-src/pages/PostListPage.tsx b/services/blog/nuldoc-src/pages/PostListPage.tsx
new file mode 100644
index 00000000..054955e6
--- /dev/null
+++ b/services/blog/nuldoc-src/pages/PostListPage.tsx
@@ -0,0 +1,54 @@
+import GlobalFooter from "../components/GlobalFooter.tsx";
+import GlobalHeader from "../components/GlobalHeader.tsx";
+import PageLayout from "../components/PageLayout.tsx";
+import Pagination from "../components/Pagination.tsx";
+import PostPageEntry from "../components/PostPageEntry.tsx";
+import { Config } from "../config.ts";
+import { PostPage } from "../generators/post.ts";
+
+export default function PostListPage(
+ posts: PostPage[],
+ config: Config,
+ currentPage: number,
+ totalPages: number,
+) {
+ const pageTitle = "投稿一覧";
+
+ const pageInfoSuffix = ` (${currentPage}ページ目)`;
+ const metaTitle = `${pageTitle}${pageInfoSuffix}|${config.blog.siteName}`;
+ const metaDescription = `投稿した記事の一覧${pageInfoSuffix}`;
+
+ return (
+ <PageLayout
+ metaCopyrightYear={config.blog.siteCopyrightYear}
+ metaDescription={metaDescription}
+ metaTitle={metaTitle}
+ metaAtomFeedHref={`https://${config.blog.fqdn}/posts/atom.xml`}
+ config={config}
+ >
+ <body className="list">
+ <GlobalHeader config={config} />
+ <main className="main">
+ <header className="page-header">
+ <h1>{pageTitle}{pageInfoSuffix}</h1>
+ </header>
+
+ <Pagination
+ currentPage={currentPage}
+ totalPages={totalPages}
+ basePath="/posts/"
+ />
+
+ {posts.map((post) => <PostPageEntry post={post} key={post.uuid} />)}
+
+ <Pagination
+ currentPage={currentPage}
+ totalPages={totalPages}
+ basePath="/posts/"
+ />
+ </main>
+ <GlobalFooter config={config} />
+ </body>
+ </PageLayout>
+ );
+}