we are so back

This commit is contained in:
Laker Turner 2025-04-23 14:47:12 +01:00
parent 6972a40092
commit 8ac5e73d4a
No known key found for this signature in database
25 changed files with 292 additions and 128 deletions

View file

@ -8,6 +8,9 @@ import BlogPostList from "~/components/lists/BlogPostList.astro";
description="A list of all my blog posts."
icon="fa-solid fa-star"
>
<p class="mb-6">my personal blog is <a class="link" href="https://concorde.blog">Concorde</a>, but here has more technical things.</p>
<BlogPostList collection="blog" />
<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

@ -8,6 +8,7 @@ import NoteList from "~/components/lists/NoteList.astro";
import StyledLink from "~/components/util/StyledLink.astro";
import { Content as Bio } from "~/content/bio.md";
import Prose from "~/components/ui/Prose.astro";
import Date from "~/components/util/Date.astro";
---
<Layout>

View file

@ -0,0 +1,16 @@
---
import Page from "~/layouts/Page.astro";
import Prose from "~/components/ui/Prose.astro";
import { Content } from "~/content/colophon.md";
---
<Page
title="Colophon"
description="how the site gets made"
icon="fa-solid fa-wrench"
date="2025-03-13"
>
<Prose>
<Content />
</Prose>
</Page>

14
src/pages/more.astro Normal file
View file

@ -0,0 +1,14 @@
---
import Page from "~/layouts/Page.astro";
---
<Page
title="Even more Ivy!"
description="Almost every page on this site"
icon="fa-solid fa-user"
date="2025-03-13"
>
</Page>