OKAY LETS GOOOOO
This commit is contained in:
parent
befda49b7e
commit
3c62bdd713
11 changed files with 79 additions and 28 deletions
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
18
src/pages/meta/others.astro
Normal file
18
src/pages/meta/others.astro
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue