Compare commits

..

No commits in common. "0a5d5ca92d288a03dcb2b724184f885b38a3f4ff" and "7548baa72d902aaacbda48bf07245cb52fce8cc9" have entirely different histories.

6 changed files with 1 additions and 22 deletions

View file

@ -4,7 +4,6 @@ pubDate: 2024-12-17T00:49:00.000+11
description: 'This is the first post of my new website. featuring information on why I chose Astro to rewrite it and some extra fun information along the way!' description: 'This is the first post of my new website. featuring information on why I chose Astro to rewrite it and some extra fun information along the way!'
author: 'Aria' author: 'Aria'
tags: ["blogging", "learning in public", "development"] tags: ["blogging", "learning in public", "development"]
draft: false
--- ---
import { Picture, getImage } from "astro:assets"; import { Picture, getImage } from "astro:assets";
import FriendLink from "../components/FriendLink.astro"; import FriendLink from "../components/FriendLink.astro";

View file

@ -4,7 +4,6 @@ pubDate: 2025-03-10T14:35:00.000+11
description: 'HRT appointment is getting closer and I have some thoughts and want to go over the story' description: 'HRT appointment is getting closer and I have some thoughts and want to go over the story'
author: 'Aria' author: 'Aria'
tags: ["personal", "HRT", "🏳️‍⚧️"] tags: ["personal", "HRT", "🏳️‍⚧️"]
draft: false
--- ---
## The story so far ## The story so far

View file

@ -4,7 +4,6 @@ pubDate: 2025-05-13T01:47:00.000+11
description: 'Time to get my keys and addresses all sorted' description: 'Time to get my keys and addresses all sorted'
author: 'Aria' author: 'Aria'
tags: ["learning in public", "security", "GPG"] tags: ["learning in public", "security", "GPG"]
draft: false
--- ---
import { Picture, getImage } from "astro:assets"; import { Picture, getImage } from "astro:assets";
import ssh_autofill from "../img/blog/Screenshot_20250513_004022.png"; import ssh_autofill from "../img/blog/Screenshot_20250513_004022.png";

View file

@ -1,11 +0,0 @@
---
title: 'Following up on my identity and security'
pubDate: 2025-05-21T01:47:00.000+11
description: 'Time to get my keys and addresses all sorted'
author: 'Aria'
tags: ["learning in public", "security", "GPG", "Storage"]
draft: true
---
import { Picture, getImage } from "astro:assets";
tehe

View file

@ -13,7 +13,6 @@ const blog = defineCollection({
description: z.string(), description: z.string(),
author: z.string(), author: z.string(),
tags: z.array(z.string()), tags: z.array(z.string()),
draft: z.boolean(),
}), }),
}); });

View file

@ -4,12 +4,7 @@ import { getCollection } from "astro:content";
import BlogEntry from "../components/BlogEntry.astro"; import BlogEntry from "../components/BlogEntry.astro";
import Partition from "../components/Partition.astro"; import Partition from "../components/Partition.astro";
import BaseLayout from "../layouts/BaseLayout.astro"; import BaseLayout from "../layouts/BaseLayout.astro";
import { boolean } from "astro:schema"; const allPosts = await getCollection("blog");
const allPosts = await getCollection("blog", ({ data }) => {
return data.draft !== true;
});
const pageTitle = "Aria's blog"; const pageTitle = "Aria's blog";
const description = "Aria's blog of assorted content"; const description = "Aria's blog of assorted content";
@ -30,6 +25,5 @@ const description = "Aria's blog of assorted content";
)) ))
} }
</ul> </ul>
</Partition> </Partition>
</BaseLayout> </BaseLayout>