Add syndication links to blog posts
All checks were successful
Deploy / Deploy Website (push) Successful in 31s

This commit is contained in:
Joshua Goins 2025-06-07 10:18:06 -04:00
parent 03f50b2df5
commit 9b9b0e240b
6 changed files with 24 additions and 0 deletions

View file

@ -9,6 +9,7 @@ tags:
toc: true
series:
- Astra & Novus Status Update
bluesky_url: "https://bsky.app/profile/redstrate.com/post/3lojtouuip22g"
---
Sooo... it's been a while since I wrote one of these. We have a years worth of progress to catch up on, so we'd better begin!

View file

@ -6,6 +6,7 @@ summary: "How I personally grind the Gold Saucer event easily with Hooky!"
tags:
- FFXIV
- Matrix
bluesky_url: "https://bsky.app/profile/redstrate.com/post/3lpwy4yvhqk2v"
---
Right now [there's a Gold Saucer event](https://na.finalfantasyxiv.com/lodestone/special/2025/the_make_it_rain_campaign/pP1HUSgIHI) in FFXIV, which slightly increases MGP earned in GATEs. (There is also other events that have rewards tied to GATEs, like Moogle Treasure Troves.) These GATEs happen every so often, on a fixed schedule. They are announced in every Gold Saucer zone with a chat message:

View file

@ -8,6 +8,8 @@ tags:
series:
- Kawari Progress Report
summary: "This update is all about polish and making Kawari easier to setup/use. What's the point of building a project that's difficult to setup?"
bluesky_url: "https://bsky.app/profile/redstrate.com/post/3lotb55xl3c2c"
mastodon_url: "https://mastodon.art/@redstrate/114484253920725773"
---
This update is all about polish and making Kawari easier to setup/use. What's the point of building a project that's difficult to setup?

View file

@ -8,6 +8,7 @@ tags:
series:
- Kawari Progress Report
summary: "Here is a new progress report, mostly smaller things but I managed to complete another patch update!"
bluesky_url: "https://bsky.app/profile/redstrate.com/post/3lo52uowkyc2i"
---
Here is a new progress report, mostly smaller things but I managed to complete another patch update! I have begun working on my other FFXIV projects again, so Kawari has taken a bit of a back-burner.

View file

@ -5,6 +5,7 @@ draft: false
summary: "It's with much duress that I announce I'm releasing yet-another-application, this time a BlueSky client."
tags:
- BlueSky
bluesky_url: "https://bsky.app/profile/redstrate.com/post/3lnq2p2v3lk2z"
---
It's with much duress that I announce I'm releasing yet-another-application, this time a [BlueSky](https://bluesky.social) client. If you know me, I use the [Fediverse](https://en.wikipedia.org/wiki/Fediverse) a ton - so why am I playing the "other side"? My reasons are as follows:

View file

@ -24,6 +24,24 @@
{{ range $terms }}
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
{{ end }}
<br>
<span>Syndicated to:</span>
{{ with .Params.mastodon_url }}
<a href="{{ . }}">
{{ with resources.Get "icons/mastodon.svg" }}
<img alt="Mastodon logo" class="symbolic-icon" style="image-rendering: pixelated;" width="16" height="16" src="{{ .RelPermalink }}">
{{ end }}
</a>
{{ end }}
{{ with .Params.bluesky_url }}
<a href="{{ . }}">
{{ with resources.Get "icons/bluesky.svg" }}
<img alt="BlueSky logo" class="symbolic-icon" style="image-rendering: pixelated;" width="16" height="16" src="{{ .RelPermalink }}">
{{ end }}
</a>
{{ end }}
{{ end }}
<hr>