From fe45c44045fb627cb6e7d7c413b8c6117b503a8b Mon Sep 17 00:00:00 2001 From: Anton Vakhrushev Date: Sat, 7 Mar 2026 12:05:45 +0300 Subject: [PATCH] Fix main page --- src/components/ArticleList.astro | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/src/components/ArticleList.astro b/src/components/ArticleList.astro index 37b0a9a..9aa9437 100644 --- a/src/components/ArticleList.astro +++ b/src/components/ArticleList.astro @@ -23,12 +23,17 @@ for (const article of sorted) { } --- {[...byYear.entries()].map(([year, items]) => ( -
-

{year}

- {items.map((article) => ( -

- {article.title} -

- ))} +
+

{year}

+
    + {items.map((article) => ( +
  • + + {article.title} +
  • + ))} +
))}