2023-05-02 08:50:45 +02:00

45 lines
941 B
Plaintext

---
import { getCollection } from 'astro:content';
import BaseHead from '../../components/BaseHead.astro';
import Header from '../../components/Header.astro';
import Footer from '../../components/Footer.astro';
const posts = (await getCollection('blog')).sort(
(a, b) => a.data.pubDate.valueOf() - b.data.pubDate.valueOf()
);
---
<!DOCTYPE html>
<html lang="en">
<head>
<BaseHead
title="blog"
description="blog about the making of maciej's projects and more"
/>
<style>
section {
text-align: center;
}
</style>
</head>
<body>
<Header />
<main>
<section>
<h2>My blog</h2>
<ul class="post-list">
{
posts.map((post) => (
<li>
<a href={`/blog/${post.slug}/`}>{post.data.title}</a>
</li>
))
}
</ul>
</section>
</main>
<Footer />
</body>
</html>