Update booru links

This commit is contained in:
Bad Manners 2025-04-14 22:13:22 -03:00
parent 477ef638cc
commit 0d1629a765
Signed by: badmanners
GPG key ID: 8C88292CCB075609
6 changed files with 9 additions and 15 deletions

View file

@ -9,7 +9,7 @@ thumbnail: /src/assets/thumbnails/stories/bm_10_birdroom.png
description: |
Beetle finds an odd-shaped friend deep in his work, and does what he does best: be a messy distraction.
This silly short was inspired by <a href="https://booru.badmanners.xyz/index.php?q=post/view/4" target="_blank">a wonderful commission</a> that I got from [Eli-Eternity](https://www.furaffinity.net/user/eli-eternity) and was supposed to go along with it, but this story doesn't even come close to doing it justice. Seriously, check out his piece if you haven't! It's turned out amazing, and he's done an incredible job, and I love it so much!
This silly short was inspired by <a href="https://booru.badmanners.xyz/post/14" target="_blank">a wonderful commission</a> that I got from [Eli-Eternity](https://www.furaffinity.net/user/eli-eternity) and was supposed to go along with it, but this story doesn't even come close to doing it justice. Seriously, check out his piece if you haven't! It's turned out amazing, and he's done an incredible job, and I love it so much!
Why are you still reading this instead of clicking the link above?!
posts:

View file

@ -10,7 +10,7 @@ thumbnail: /src/assets/thumbnails/stories/bm_8_flavorful_favor.png
description: |
One, fearful and furry; one, formidable and feathery; and one, fired-up for the follow-up. A threesome fatefully forced into a fantastical face-to-face.
So many ideas that I want to write...! I just haven't found a lot of motivation to write as much as before. But I'm still working, and haven't gone anywhere. At least I finally managed to churn out this one, featuring Beetle, one of my OCs! You might recognize him from <a href="https://booru.badmanners.xyz/index.php?q=post/view/3" target="_blank">one of the few things</a> I actually uploaded this last month. Quite a fun personality to play with, along with my sona Sam and another OC, Muno - someone might remember that last name from one of my previous stories. All of my characters featured in stories are fun really, with a few that I wanna revisit or new ones that I make for each new setting. Just wish I had a better writing rhythm to put all those ideas to life like I used to, though! Managing to finish this story is a start, I guess.
So many ideas that I want to write...! I just haven't found a lot of motivation to write as much as before. But I'm still working, and haven't gone anywhere. At least I finally managed to churn out this one, featuring Beetle, one of my OCs! You might recognize him from <a href="https://booru.badmanners.xyz/post/13" target="_blank">one of the few things</a> I actually uploaded this last month. Quite a fun personality to play with, along with my sona Sam and another OC, Muno - someone might remember that last name from one of my previous stories. All of my characters featured in stories are fun really, with a few that I wanna revisit or new ones that I make for each new setting. Just wish I had a better writing rhythm to put all those ideas to life like I used to, though! Managing to finish this story is a start, I guess.
posts:
eka: https://aryion.com/g4/view/884215
furaffinity: https://www.furaffinity.net/view/51778522/

View file

@ -9,7 +9,7 @@ thumbnail: /src/assets/thumbnails/stories/bm_ff_14_part_of_the_show.png
description: |
You attend a show, unaware of how personal it can turn out...
This is a story based off of a YCH that I got from [Helkumurrr](https://www.furaffinity.net/user/helkumurrr) which <a href="https://booru.badmanners.xyz/index.php?q=post/view/5" target="_blank">you should definitely check out</a>. First piece with myself as pred, to complement my previous commission where I was prey and also with a short (and hopefully fun) story to go along with it!
This is a story based off of a YCH that I got from [Helkumurrr](https://www.furaffinity.net/user/helkumurrr) which <a href="https://booru.badmanners.xyz/post/15" target="_blank">you should definitely check out</a>. First piece with myself as pred, to complement my previous commission where I was prey and also with a short (and hopefully fun) story to go along with it!
posts:
eka: https://aryion.com/g4/view/902197
furaffinity: https://www.furaffinity.net/view/52509501/

View file

@ -295,8 +295,8 @@
Content that features my character and fursona <a href="https://badmanners.xyz/sam_brendan/" x-data="{ href: 'https://badmanners.xyz/sam_brendan', suffix: '?ageVerified=true' }" x-bind:href="ageVerified ? href + suffix : href" target="_blank" >Sam, the mimic x maned wolf hybrid</a>.
- name: Beetle
description: |
Content that features my character <a href="https://booru.badmanners.xyz/index.php?q=post/view/3" target="_blank">Beetle, the gryphon</a>.
Content that features my character <a href="https://booru.badmanners.xyz/post/13" target="_blank">Beetle, the gryphon</a>.
- name: Muno
description: Content that features my character Muno, the snake.
description: Content that features my character <a href="https://booru.badmanners.xyz/post/62" target="_blank">Muno, the snake</a>.
- name: Yolk
description: Content that features <a href="https://www.furaffinity.net/user/vampire101" target="_blank" rel="nofollow">Vampire101's</a> fursona, Yolk the monkey.

View file

@ -120,15 +120,9 @@ const isCurrentRoute = (path: string) =>
</ul>
<footer class="py-6 text-center text-xs text-black dark:text-white">
<span
>&copy; {
currentYear === "2024" ? (
<time datetime="2024">2024</time>
) : (
<Fragment>
<time datetime="2024">2024</time>&ndash;<time datetime={currentYear}>{currentYear}</time>
</Fragment>
)
} |
>&copy;
<time datetime="2024">2024</time>&ndash;<time datetime={currentYear}>{currentYear}</time>
|
</span>
<a class="text-link hover:underline focus:underline" href="/licenses.toml" rel="license">Licenses</a>
</footer>

View file

@ -8,7 +8,7 @@ import { t } from "@i18n";
type StoryWithPubDate = CollectionEntry<"stories"> & { data: { pubDate: Date } };
const series = await getEntry("series", "the-lost-of-the-marshes");
const series = await getEntry("series", "the-lost-of-the-marshes")!!;
const stories = (await getCollection(
"stories",
(story) => !story.data.isDraft && story.data.pubDate && story.data.series?.id === series.id,