diff options
| author | Yuqian Yang <crupest@crupest.life> | 2026-01-23 23:16:45 +0800 |
|---|---|---|
| committer | Yuqian Yang <crupest@crupest.life> | 2026-01-24 16:38:33 +0800 |
| commit | 6d39cee75e7ef7c5e06d1a745a32224e11d68c37 (patch) | |
| tree | 0f2646b569e8af6a2f464eb2755553eda0fe593b /www-2/src/layouts/ListPage.astro | |
| parent | 78e3e234877cb10ca1088df31e831b36fa4a12c0 (diff) | |
| download | crupest-6d39cee75e7ef7c5e06d1a745a32224e11d68c37.tar.gz crupest-6d39cee75e7ef7c5e06d1a745a32224e11d68c37.tar.bz2 crupest-6d39cee75e7ef7c5e06d1a745a32224e11d68c37.zip | |
HALF WORK!astro
Diffstat (limited to 'www-2/src/layouts/ListPage.astro')
| -rw-r--r-- | www-2/src/layouts/ListPage.astro | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/www-2/src/layouts/ListPage.astro b/www-2/src/layouts/ListPage.astro new file mode 100644 index 0000000..708df26 --- /dev/null +++ b/www-2/src/layouts/ListPage.astro @@ -0,0 +1,23 @@ +--- +import PageBase from "./PageBase.astro"; +import Nav from "../components/Nav.astro"; +import ArticlePreviewList, { + type Props as ArticlePreviewListProps, +} from "../components/ArticlePreviewList.astro"; + +interface Props { + title: string; + articles: ArticlePreviewListProps["articles"]; +} + +const { title, articles } = Astro.props; +--- + +<PageBase title={title}> + <Nav /> + <h1>{title}</h1> + <hr /> + <ArticlePreviewList articles={articles} headerElement="h2" /> +</PageBase> + +<style></style> |
