Reversed order of displayed blog posts

This commit is contained in:
2024-07-09 14:51:01 +02:00
parent fa5b02a4fe
commit c9c156bd33

View File

@ -35,7 +35,7 @@ var filtered_posts = posts.filter(
{t("blog")["description"]} {t("blog")["description"]}
</p> </p>
<Separator className="my-4" /> <Separator className="my-4" />
<PostsList filteredPosts={filtered_posts} lang={Astro.currentLocale} /> <PostsList filteredPosts={filtered_posts.reverse()} lang={Astro.currentLocale} />
</div> </div>
</SinglePageBlogMode> </SinglePageBlogMode>
</MainLayout> </MainLayout>