mirror of
https://github.com/maciejpedzich/maciejpedzi.ch.git
synced 2025-04-05 22:31:11 +02:00
45 lines
941 B
Plaintext
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>
|