This commit is contained in:
Laker Turner 2025-04-23 21:09:04 +01:00
parent 541afe60d9
commit ae64b5d76a
No known key found for this signature in database
8 changed files with 92 additions and 59 deletions

View file

@ -4,13 +4,9 @@ import BlogPostList from "~/components/lists/BlogPostList.astro";
---
<Page
title="Blog thing yes yes"
description="A list of all my blog posts."
title="Blog"
description="writing"
icon="fa-solid fa-star"
>
<p class="mb-6">
My personal blog is <a class="link" href="https://concorde.blog">Concorde</a
>, but here's where the technical stuff goes.
</p>
<BlogPostList />
</Page>

View file

@ -1,7 +1,15 @@
---
import Page from "~/layouts/Page.astro";
const meta = [
{
title: "Colophon",
link: "colophon",
desc: "How the site gets made",
icon: "fa-solid fa-wrench",
colour: "bl", // currently unused, cause i can't be bothered
},
];
---
<Page
@ -10,5 +18,22 @@ import Page from "~/layouts/Page.astro";
icon="fa-solid fa-user"
date="2025-03-13"
>
<h3 class="text-lg font-bold mb-2">/meta</h3>
<ul>
<ul>
{
meta.map((item) => (
<li>
<h4 class="font-bold">
<i class={`${item.icon} mr-2 text-light-pu dark:text-dark-pu`} />
<a href={"/meta/" + item.link}>{item.title}</a>
</h4>
<blockquote class="border-l-2 border-light-pu dark:border-dark-pu pl-4 mt-2 text-light-tx-2 dark:text-dark-tx-2">
{item.desc}
</blockquote>
</li>
))
}
</ul>
</ul>
</Page>