do some funny WIP post things

pull/1/head
Drake 2 years ago
parent 5de9155cfc
commit e8bac84734

@ -6,7 +6,7 @@ const posts = allPosts.sort((a, b) => new Date(b.date) - new Date(a.date));
<div>
{posts.map((post) => {
if (post.title !== "template") { return (
if (!post.wip) { return (
<a href={post.url} style="text-decoration: none;">
<p>
<b>{post.title}</b> - {post.date}<br>

@ -6,11 +6,13 @@ export async function getStaticPaths({paginate, rss}) {
title: "Ruthenic's Blog",
description: "My blog, utilized for talking about random things.",
items: posts.map(item => ({
title: item.title,
description: item.description,
link: item.url,
pubDate: item.date
})),
title: item.title,
description: item.description,
link: item.url,
pubDate: item.date
})
).filter(item => (item.wip ? false : item)
),
dest: "/blog/feed.xml"
})
return paginate(posts)

@ -2,6 +2,7 @@
layout: ../../layout/BaseBlog.astro
title: So... what happens when we die?
description: But like, I really do want to fuck Angel Dust when I die.
wip: false
date: Fri, Apr 23 2021
---

@ -2,6 +2,7 @@
layout: ../../layout/BaseBlog.astro
title: Gnome, and why it sucks
description: yes, even worse than <i>The new Trio 😈💗💗💗 - Corina Dust 😈😝</i>
wip: false
date: Mon, Jan 31 2022
---

@ -2,6 +2,7 @@
layout: ../../layout/BaseBlog.astro
title: Why are printers shit?
description: Fuck you, Canon.
wip: false
date: Mon, Apr 12 2021
---

@ -2,6 +2,7 @@
layout: ../../layout/BaseBlog.astro
title: "A Story Of Subliminals: Part I"
description: That moment when you want to learn sex jokes so much you turn to magic audio.
wip: false
date: Fri, Apr 6 2021
---

@ -2,6 +2,7 @@
layout: ../../layout/BaseBlog.astro
title: template
description: description
wip: true
date: WORDDAY, MONTH NUMDAY YEAR
---

@ -0,0 +1,9 @@
---
layout: ../../layout/BaseBlog.astro
title: Why Tulpamancy isn't
description: description
wip: true
date: WORDDAY, MONTH NUMDAY YEAR
---
Content here!
Loading…
Cancel
Save