we are so back
This commit is contained in:
parent
6972a40092
commit
8ac5e73d4a
25 changed files with 292 additions and 128 deletions
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
16
src/pages/meta/colophon.astro
Normal file
16
src/pages/meta/colophon.astro
Normal 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
14
src/pages/more.astro
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue