OKAY LETS GOOOOO

This commit is contained in:
Ivy Turner 2025-04-29 21:47:58 +01:00
parent befda49b7e
commit 3c62bdd713
No known key found for this signature in database
11 changed files with 79 additions and 28 deletions

View file

@ -21,6 +21,7 @@ const { Content } = await render(post);
description={post.data.description}
date={post.data.date}
icon={post.data.icon}
back="/blog"
>
<AgeWarning date={post.data.date} />
<Prose>

View file

@ -10,5 +10,7 @@ import StyledLink from "~/components/util/StyledLink.astro";
icon="fa-solid fa-signature"
>
<StyledLink href="/blog/tags">See all the tags</StyledLink>
<StyledLink href="/blog/feed.xml" icon="fa-solid fa-rss">Subscribe via RSS</StyledLink>
<div class="mb-4"></div>
<BlogPostList />
</Page>

View file

@ -0,0 +1,18 @@
---
import Page from "~/layouts/Page.astro";
import others from "~/data/others.json";
---
<Page
title="Other people and sites I like"
description="also some webrings, wow!"
icon="fa-solid fa-users"
>
<h3>Friends</h3>
{others.friends.map((item) => {
switch (item.b) {
}
})}
</Page>